diff options
Diffstat (limited to 'Tonbo/Schema/Objects')
| -rw-r--r-- | Tonbo/Schema/Objects/Query.graphql.swift | 12 | ||||
| -rw-r--r-- | Tonbo/Schema/Objects/User.graphql.swift | 13 |
2 files changed, 25 insertions, 0 deletions
diff --git a/Tonbo/Schema/Objects/Query.graphql.swift b/Tonbo/Schema/Objects/Query.graphql.swift new file mode 100644 index 0000000..3ebe37d --- /dev/null +++ b/Tonbo/Schema/Objects/Query.graphql.swift @@ -0,0 +1,12 @@ +// @generated +// This file was automatically generated and should not be edited. + +import ApolloAPI + +public extension Objects { + static let Query = ApolloAPI.Object( + typename: "Query", + implementedInterfaces: [], + keyFields: nil + ) +}
\ No newline at end of file diff --git a/Tonbo/Schema/Objects/User.graphql.swift b/Tonbo/Schema/Objects/User.graphql.swift new file mode 100644 index 0000000..cd0bf77 --- /dev/null +++ b/Tonbo/Schema/Objects/User.graphql.swift @@ -0,0 +1,13 @@ +// @generated +// This file was automatically generated and should not be edited. + +import ApolloAPI + +public extension Objects { + /// A user + static let User = ApolloAPI.Object( + typename: "User", + implementedInterfaces: [], + keyFields: nil + ) +}
\ No newline at end of file |