From 2e22626a5b994182a5c4990d042de1c3f73e47b3 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 13 Feb 2025 02:44:02 -0800 Subject: feat: Initial commit --- Tonbo/Schema/Objects/Query.graphql.swift | 12 ++++++++++++ Tonbo/Schema/Objects/User.graphql.swift | 13 +++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 Tonbo/Schema/Objects/Query.graphql.swift create mode 100644 Tonbo/Schema/Objects/User.graphql.swift (limited to 'Tonbo/Schema/Objects') 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 -- cgit v1.2.3