-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
73 lines (66 loc) · 1.54 KB
/
schema.graphql
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
### This file was generated by Nexus Schema
### Do not make changes to this file directly
type Customer {
accepts_marketing: String
accepts_marketing_updated_at: String
admin_graphql_api_id: String
created_at: String
currency: String
email: String
first_name: String
id: Int
last_name: String
last_order_id: Int
last_order_name: String
marketing_opt_in_level: String
multipass_identifier: String
note: String
orders_count: Int
phone: String
state: String
tags: String
tax_exempt: String
tax_exemptions: String
total_spent: Int
updated_at: String
verified_email: String
}
input CustomerCreateInput {
accepts_marketing: String
accepts_marketing_updated_at: String
admin_graphql_api_id: String
created_at: String
currency: String
email: String
first_name: String
id: Int
last_name: String
last_order_id: Int
last_order_name: String
marketing_opt_in_level: String
multipass_identifier: String
note: String
orders_count: Int
phone: String
state: String
tags: String
tax_exempt: String
tax_exemptions: String
total_spent: Int
updated_at: String
verified_email: String
}
"""
A date-time string at UTC, such as 2007-12-03T10:15:30Z, compliant with the `date-time` format outlined in section 5.6 of the RFC 3339 profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar.
"""
scalar DateTime
type Mutation {
createCustomer(data: CustomerCreateInput!): Customer!
}
type Query {
allCustomers: [Customer!]!
}
enum SortOrder {
asc
desc
}