blob: 2607e1690ac98263c16b284aee80240f05d29027 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// @generated
// This file was automatically generated and should not be edited.
import ApolloAPI
public protocol SelectionSet: ApolloAPI.SelectionSet & ApolloAPI.RootSelectionSet
where Schema == Tonbo.SchemaMetadata {}
public protocol InlineFragment: ApolloAPI.SelectionSet & ApolloAPI.InlineFragment
where Schema == Tonbo.SchemaMetadata {}
public protocol MutableSelectionSet: ApolloAPI.MutableRootSelectionSet
where Schema == Tonbo.SchemaMetadata {}
public protocol MutableInlineFragment: ApolloAPI.MutableSelectionSet & ApolloAPI.InlineFragment
where Schema == Tonbo.SchemaMetadata {}
public enum SchemaMetadata: ApolloAPI.SchemaMetadata {
public static let configuration: any ApolloAPI.SchemaConfiguration.Type = SchemaConfiguration.self
public static func objectType(forTypename typename: String) -> ApolloAPI.Object? {
switch typename {
case "Query": return Tonbo.Objects.Query
case "User": return Tonbo.Objects.User
default: return nil
}
}
}
public enum Objects {}
public enum Interfaces {}
public enum Unions {}
|