-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathschema.graphql
More file actions
28 lines (27 loc) · 1.03 KB
/
schema.graphql
File metadata and controls
28 lines (27 loc) · 1.03 KB
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
type gcpBigQueryReservationFailureStatusDetail
@generate(
query: { get: true, query: true, aggregate: true }
mutation: { add: true, delete: false }
)
@key(fields: "id") {
id: String! @id @search(by: [hash])
typeUrl: String @search(by: [hash, regexp])
value: String @search(by: [hash, regexp])
}
type gcpBigQueryReservationCapacity implements gcpBaseResource
@generate(
query: { get: true, query: true, aggregate: true }
mutation: { add: true, delete: false }
)
@key(fields: "id") {
slotCount: String @search(by: [hash, regexp])
plan: String @search(by: [hash, regexp])
state: String @search(by: [hash, regexp])
commitmentStartTime: String @search(by: [hash, regexp])
commitmentEndTime: String @search(by: [hash, regexp])
failureStatusCode: Int @search
failureStatusMessage: String @search(by: [hash, regexp])
failureStatusDetails: [gcpBigQueryReservationFailureStatusDetail],
renewalPlan: String @search(by: [hash, regexp])
project: [gcpProject] @hasInverse(field: bigQueryReservationCapacity)
}