Skip to content

Commit 5a5f4df

Browse files
authored
Merge pull request #65 from gersbach/NO-ISSUE/fix-parsing-graphql
NO ISSUE : fix graphql parsing
2 parents cc5fdf3 + 7fbf44f commit 5a5f4df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/fsrt/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ pub(crate) fn scan_directory<'a>(
658658
.expect("Failed to read glob pattern")
659659
.map(|path| fs::read_to_string(path.unwrap()).unwrap_or_default())
660660
.collect::<Vec<String>>()
661-
.join(" ");
661+
.join("\n");
662662

663663
let ast = parse_schema::<&str>(&joined_schema);
664664

0 commit comments

Comments
 (0)