Skip to content

Commit 83ccb87

Browse files
committed
Latest PROD release
1 parent 8815b38 commit 83ccb87

File tree

130 files changed

+3828
-756
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+3828
-756
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
query CountAlerts($filter: AlertFilter) {
2+
countAlerts(filter: $filter) {
3+
count
4+
}
5+
}

documents/alert/DeleteAlerts.graphql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mutation DeleteAlerts($ids: [ID!]!) {
2-
deleteAlerts(ids: $ids) {
1+
mutation DeleteAlerts($ids: [ID!]!, $isSynchronous: Boolean) {
2+
deleteAlerts(ids: $ids, isSynchronous: $isSynchronous) {
33
id
44
state
55
}

documents/alert/DeleteAllAlerts.graphql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mutation DeleteAllAlerts {
2-
deleteAllAlerts {
1+
mutation DeleteAllAlerts($filter: AlertFilter, $isSynchronous: Boolean, $correlationId: String) {
2+
deleteAllAlerts(filter: $filter, isSynchronous: $isSynchronous, correlationId: $correlationId) {
33
id
44
state
55
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
query CountCategories($filter: CategoryFilter) {
2+
countCategories(filter: $filter) {
3+
count
4+
}
5+
}

documents/category/DeleteAllCategories.graphql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mutation DeleteAllCategories($filter: CategoryFilter!) {
2-
deleteAllCategories(filter: $filter) {
1+
mutation DeleteAllCategories($filter: CategoryFilter, $isSynchronous: Boolean, $correlationId: String) {
2+
deleteAllCategories(filter: $filter, isSynchronous: $isSynchronous, correlationId: $correlationId) {
33
id
44
state
55
}

documents/category/DeleteCategories.graphql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mutation DeleteCategories($ids: [ID!]!) {
2-
deleteCategories(ids: $ids) {
1+
mutation DeleteCategories($ids: [ID!]!, $isSynchronous: Boolean) {
2+
deleteCategories(ids: $ids, isSynchronous: $isSynchronous) {
33
id
44
state
55
}

documents/category/QueryCategories.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
query QueryCategories($filter: CategoryFilter!) {
1+
query QueryCategories($filter: CategoryFilter) {
22
categories(filter: $filter) {
33
results {
44
id
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
query CountCollections($filter: CollectionFilter) {
2+
countCollections(filter: $filter) {
3+
count
4+
}
5+
}

documents/collection/DeleteAllCollections.graphql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mutation DeleteAllCollections {
2-
deleteAllCollections {
1+
mutation DeleteAllCollections($filter: CollectionFilter, $isSynchronous: Boolean, $correlationId: String) {
2+
deleteAllCollections(filter: $filter, isSynchronous: $isSynchronous, correlationId: $correlationId) {
33
id
44
state
55
}

documents/collection/DeleteCollections.graphql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mutation DeleteCollections($ids: [ID!]!) {
2-
deleteCollections(ids: $ids) {
1+
mutation DeleteCollections($ids: [ID!]!, $isSynchronous: Boolean) {
2+
deleteCollections(ids: $ids, isSynchronous: $isSynchronous) {
33
id
44
state
55
}

0 commit comments

Comments
 (0)