-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcustomers-schema.graphql
83 lines (72 loc) · 1.46 KB
/
customers-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
74
75
76
77
78
79
80
81
82
83
extend schema
@link(url: "https://specs.apollo.dev/federation/v2.8", import:
[
"@key",
"@requires",
"@external",
"@tag",
"@shareable"
]
)
type Query {
users: [User]
user(id: ID!): User
}
"""
An user account in our system
"""
type User @key(fields: "id") {
id: ID!
firstName: String @tag(name: "private")
lastName: String @tag(name: "private")
address: String @tag(name: "private")
phone: String
@tag(name: "private")
@shareable
email: String!
@tag(name: "private")
@shareable
"""
The user's active cart session. Once the cart items have been purchases, they transition to an Order
"""
activeCart: Cart
"""
The users previous purchases
"""
orders(filters: OrderFilters): [Order]
paymentMethods: [PaymentMethod]
}
"""
Search filters for when showing an users previous purchases
"""
input OrderFilters {
orderId: ID!
priceHigh: Float
priceLow: Float
itemsInOrder: Int
}
"""
An user's saved cart session. Only one cart can be active at a time
"""
type Cart @key(fields: "owner { id }") {
"""
Owner of the cart session
"""
owner: User!
"""
Items saved in the cart session
"""
items: [ProductVariant]
subtotal: Float! @requires(fields: "items { price }")
}
type Order @key(fields: "id", resolvable: false) {
id: ID!
}
type ProductVariant @key(fields: "id", resolvable: false) {
id: ID!
price: Float! @external
}
type PaymentMethod {
id: ID!
cardNumber: String!
}