Skip to content

Commit a995550

Browse files
committed
Added observables
1 parent d4ead3e commit a995550

Some content is hidden

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

55 files changed

+978
-70
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
mutation DeleteAllCategories($filter: CategoryFilter!) {
2+
deleteAllCategories(filter: $filter) {
3+
id
4+
state
5+
}
6+
}

documents/category/GetCategory.graphql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@ query GetCategory($id: ID!) {
22
category(id: $id) {
33
id
44
name
5+
description
6+
creationDate
57
}
68
}

documents/category/QueryCategories.graphql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ query QueryCategories($filter: CategoryFilter!) {
33
results {
44
id
55
name
6+
description
7+
creationDate
68
}
79
}
810
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
mutation DeleteAllEvents($filter: EventFilter!) {
2+
deleteAllEvents(filter: $filter) {
3+
id
4+
state
5+
}
6+
}

documents/event/GetEvent.graphql

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,22 @@ query GetEvent($id: ID!) {
44
name
55
alternateNames
66
creationDate
7+
address {
8+
streetAddress
9+
city
10+
region
11+
country
12+
postalCode
13+
}
714
startDate
815
endDate
16+
availabilityStartDate
17+
availabilityEndDate
918
price
19+
minPrice
20+
maxPrice
21+
priceCurrency
22+
isAccessibleForFree
23+
typicalAgeRange
1024
}
1125
}

documents/event/QueryEvents.graphql

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,23 @@ query QueryEvents($filter: EventFilter!) {
55
name
66
alternateNames
77
creationDate
8+
address {
9+
streetAddress
10+
city
11+
region
12+
country
13+
postalCode
14+
}
815
startDate
916
endDate
17+
availabilityStartDate
18+
availabilityEndDate
1019
price
20+
minPrice
21+
maxPrice
22+
priceCurrency
23+
isAccessibleForFree
24+
typicalAgeRange
1125
}
1226
}
1327
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
mutation DeleteAllLabels($filter: LabelFilter!) {
2+
deleteAllLabels(filter: $filter) {
3+
id
4+
state
5+
}
6+
}

documents/label/GetLabel.graphql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@ query GetLabel($id: ID!) {
22
label(id: $id) {
33
id
44
name
5+
description
6+
creationDate
57
}
68
}

documents/label/QueryLabels.graphql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ query QueryLabels($filter: LabelFilter!) {
33
results {
44
id
55
name
6+
description
7+
creationDate
68
}
79
}
810
}

documents/organization/CreateOrganization.graphql

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,5 @@ mutation CreateOrganization($organization: OrganizationInput!) {
22
createOrganization(organization: $organization) {
33
id
44
name
5-
foundingDate
6-
industries
7-
revenue
8-
revenueCurrency
9-
investment
10-
investmentCurrency
115
}
126
}

0 commit comments

Comments
 (0)