-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubscriptions.js
More file actions
42 lines (41 loc) · 877 Bytes
/
subscriptions.js
File metadata and controls
42 lines (41 loc) · 877 Bytes
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
/* eslint-disable */
// this is an auto generated file. This will be overwritten
export const onCreateNote = /* GraphQL */ `
subscription OnCreateNote($filter: ModelSubscriptionNoteFilterInput) {
onCreateNote(filter: $filter) {
id
name
description
image
createdAt
updatedAt
__typename
}
}
`;
export const onUpdateNote = /* GraphQL */ `
subscription OnUpdateNote($filter: ModelSubscriptionNoteFilterInput) {
onUpdateNote(filter: $filter) {
id
name
description
image
createdAt
updatedAt
__typename
}
}
`;
export const onDeleteNote = /* GraphQL */ `
subscription OnDeleteNote($filter: ModelSubscriptionNoteFilterInput) {
onDeleteNote(filter: $filter) {
id
name
description
image
createdAt
updatedAt
__typename
}
}
`;