Skip to content

Commit 6b668f7

Browse files
committed
fix issue in schema definition
1 parent cc45ae8 commit 6b668f7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/samples/asoiaf/typeDefs.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ export const typeDefs = gql`
66
getCharacters: [Character]
77
}
88
type Book {
9-
name: String,
10-
publisher: String,
9+
name: String
10+
publisher: String
1111
released: String
1212
}
1313
type Character {
14-
name: String,
15-
culture: String,
16-
born: String,
17-
url
14+
name: String
15+
culture: String
16+
born: String
17+
url: String
1818
}
19-
`;
19+
`;

0 commit comments

Comments
 (0)