-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.d.ts
170 lines (146 loc) · 4.79 KB
/
schema.d.ts
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/**
* This file was automatically generated by GraphQL Nexus
* Do not make changes to this file directly
*/
declare global {
interface NexusGen extends NexusGenTypes {}
}
export interface NexusGenInputs {
AuthenticateUserInput: { // input type
password?: string | null; // String
username?: string | null; // String
}
BirmsNearLocationInput: { // input type
coordinates?: number[] | null; // [Float!]
maxDistance?: number | null; // Int
}
CreateBirmInput: { // input type
coordinates?: number[] | null; // [Float!]
name?: string | null; // String
}
CreateUserInput: { // input type
password?: string | null; // String
username?: string | null; // String
}
}
export interface NexusGenEnums {
}
export interface NexusGenRootTypes {
Account: {};
AuthenticateUserPayload: { // root type
token?: string | null; // String
}
Birm: { // root type
id: string; // ID!
location: NexusGenRootTypes['Location']; // Location!
name: string; // String!
}
Location: { // root type
coordinates: number[]; // [Float!]!
type: string; // String!
}
Mutation: {};
Query: {};
User: { // root type
_id?: string | null; // String
id: string; // ID!
username?: string | null; // String
}
String: string;
Int: number;
Float: number;
Boolean: boolean;
ID: string;
}
export interface NexusGenAllTypes extends NexusGenRootTypes {
AuthenticateUserInput: NexusGenInputs['AuthenticateUserInput'];
BirmsNearLocationInput: NexusGenInputs['BirmsNearLocationInput'];
CreateBirmInput: NexusGenInputs['CreateBirmInput'];
CreateUserInput: NexusGenInputs['CreateUserInput'];
}
export interface NexusGenFieldTypes {
Account: { // field return type
birms: NexusGenRootTypes['Birm'][]; // [Birm!]!
}
AuthenticateUserPayload: { // field return type
token: string | null; // String
}
Birm: { // field return type
id: string; // ID!
location: NexusGenRootTypes['Location']; // Location!
name: string; // String!
}
Location: { // field return type
coordinates: number[]; // [Float!]!
type: string; // String!
}
Mutation: { // field return type
authenticate: NexusGenRootTypes['AuthenticateUserPayload']; // AuthenticateUserPayload!
createBirm: NexusGenRootTypes['Birm']; // Birm!
createUser: NexusGenRootTypes['User']; // User!
}
Query: { // field return type
viewer: NexusGenRootTypes['User']; // User!
}
User: { // field return type
_id: string | null; // String
account: NexusGenRootTypes['Account']; // Account!
id: string; // ID!
username: string | null; // String
}
}
export interface NexusGenArgTypes {
Account: {
birms: { // args
input: NexusGenInputs['BirmsNearLocationInput']; // BirmsNearLocationInput!
}
}
Mutation: {
authenticate: { // args
input: NexusGenInputs['AuthenticateUserInput']; // AuthenticateUserInput!
}
createBirm: { // args
input: NexusGenInputs['CreateBirmInput']; // CreateBirmInput!
}
createUser: { // args
input: NexusGenInputs['CreateUserInput']; // CreateUserInput!
}
}
}
export interface NexusGenAbstractResolveReturnTypes {
}
export interface NexusGenInheritedFields {}
export type NexusGenObjectNames = "Account" | "AuthenticateUserPayload" | "Birm" | "Location" | "Mutation" | "Query" | "User";
export type NexusGenInputNames = "AuthenticateUserInput" | "BirmsNearLocationInput" | "CreateBirmInput" | "CreateUserInput";
export type NexusGenEnumNames = never;
export type NexusGenInterfaceNames = never;
export type NexusGenScalarNames = "Boolean" | "Float" | "ID" | "Int" | "String";
export type NexusGenUnionNames = never;
export interface NexusGenTypes {
context: any;
inputTypes: NexusGenInputs;
rootTypes: NexusGenRootTypes;
argTypes: NexusGenArgTypes;
fieldTypes: NexusGenFieldTypes;
allTypes: NexusGenAllTypes;
inheritedFields: NexusGenInheritedFields;
objectNames: NexusGenObjectNames;
inputNames: NexusGenInputNames;
enumNames: NexusGenEnumNames;
interfaceNames: NexusGenInterfaceNames;
scalarNames: NexusGenScalarNames;
unionNames: NexusGenUnionNames;
allInputTypes: NexusGenTypes['inputNames'] | NexusGenTypes['enumNames'] | NexusGenTypes['scalarNames'];
allOutputTypes: NexusGenTypes['objectNames'] | NexusGenTypes['enumNames'] | NexusGenTypes['unionNames'] | NexusGenTypes['interfaceNames'] | NexusGenTypes['scalarNames'];
allNamedTypes: NexusGenTypes['allInputTypes'] | NexusGenTypes['allOutputTypes']
abstractTypes: NexusGenTypes['interfaceNames'] | NexusGenTypes['unionNames'];
abstractResolveReturn: NexusGenAbstractResolveReturnTypes;
}
declare global {
interface NexusGenPluginTypeConfig<TypeName extends string> {
}
interface NexusGenPluginFieldConfig<TypeName extends string, FieldName extends string> {
}
interface NexusGenPluginSchemaConfig {
}
}