Skip to content

Commit

Permalink
latest GraphQL Schema regenerated
Browse files Browse the repository at this point in the history
  • Loading branch information
zaychenko-sergei committed Nov 1, 2024
1 parent c6c2dcd commit b2bd928
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
14 changes: 12 additions & 2 deletions resources/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
# make codegen-graphql-schema
# ```

directive @oneOf on INPUT_OBJECT

type AccessTokenConnection {
"""
A shorthand for `edges { node { ... } }`
Expand Down Expand Up @@ -343,7 +341,12 @@ type DataBatch {
}

enum DataBatchFormat {
"""
Deprecated: Use `JSON_AOS` instead and expect it to become default in
future versions
"""
JSON
JSON_AOS
JSON_SOA
JSON_AOA
ND_JSON
Expand Down Expand Up @@ -1623,6 +1626,9 @@ type SaveDatasetEnvVarResultSuccess implements SaveDatasetEnvVarResult {

input ScheduleInput @oneOf {
timeDelta: TimeDeltaInput
"""
Supported CRON syntax: min hour dayOfMonth month dayOfWeek
"""
cron5ComponentExpression: String
}

Expand Down Expand Up @@ -1964,6 +1970,10 @@ type WebSocketProtocolDesc {
url: String!
}

directive @include(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
directive @oneOf on INPUT_OBJECT
directive @skip(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
directive @specifiedBy(url: String!) on SCALAR
schema {
query: Query
mutation: Mutation
Expand Down
6 changes: 6 additions & 0 deletions src/app/api/kamu.graphql.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -399,8 +399,13 @@ export type DataBatch = {

export enum DataBatchFormat {
Csv = "CSV",
/**
* Deprecated: Use `JSON_AOS` instead and expect it to become default in
* future versions
*/
Json = "JSON",
JsonAoa = "JSON_AOA",
JsonAos = "JSON_AOS",
/** Deprecated: Use `ND_JSON` instead */
JsonLd = "JSON_LD",
JsonSoa = "JSON_SOA",
Expand Down Expand Up @@ -1822,6 +1827,7 @@ export type SaveDatasetEnvVarResultSuccess = SaveDatasetEnvVarResult & {
};

export type ScheduleInput =
/** Supported CRON syntax: min hour dayOfMonth month dayOfWeek */
| { cron5ComponentExpression: Scalars["String"]; timeDelta?: never }
| { cron5ComponentExpression?: never; timeDelta: TimeDeltaInput };

Expand Down

0 comments on commit b2bd928

Please sign in to comment.