-
Notifications
You must be signed in to change notification settings - Fork 2
/
queries.ts
111 lines (103 loc) · 2.17 KB
/
queries.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
// const PLACE_FRAGMENT = gql`
// fragment YelpFields on Business {
// business {
// id
// key: id
// name
// coordinates {
// latitude
// longitude
// }
// location {
// address1
// city
// state
// zip_code
// }
// hours {
// open {
// end
// start
// day
// }
// }
// }
// }
// `;
// const WHATS_OPEN_FRAGMENT = gql`
// fragment UserHours on Business {
// userHours {
// schedule {
// end
// start
// day
// }
// status
// updatedAt
// }
// }
// `;
// const SEARCH_QUERY = gql`
// query AllPlacesSearchQuery($searchText: String!, $userLocation: String!) {
// search(name: $searchText, location: $userLocation) {
// business {
// id
// key: id
// name
// }
// }
// }
// `;
// const CREATE_USER_MUTATION = gql`
// mutation CreatUserMutation(
// $name: String!
// $email: String!
// $password: String!
// ) {
// createUser(
// name: $name
// authProvider: { email: { email: $email, password: $password } }
// ) {
// id
// }
// signinUser(email: { email: $email, password: $password }) {
// token
// user {
// id
// }
// }
// }
// `;
// const SIGNIN_USER_MUTATION = gql`
// mutation SigninUserMutation($email: String!, $password: String!) {
// signinUser(email: { email: $email, password: $password }) {
// token
// user {
// id
// }
// }
// }
// `;
// const CREATE_PLACE_MUTATION = gql`
// mutation CreatPlaceMutation($place: ID!, $status: String, $comment: String) {
// createPlace(id: $place, status: $status) {
// id
// }
// }
// `;
// const UPDATE_PLACE_MUTATION = gql`
// mutation CreatPlaceMutation($place: ID!, $status: String, $comment: String) {
// createPlace(id: $place, status: $status) {
// id
// }
// }
// `;
// const USER_DETAILS_QUERY = gql`
// query UserQuery($userId: ID!) {
// User(id: $userId) {
// id
// name
// email
// }
// }
// `;