adds get deployed configuration query

This commit is contained in:
Mike Kalange 2024-03-18 16:46:23 -06:00
parent 18c12e60fe
commit 54428112f8
2 changed files with 11 additions and 0 deletions

View File

@ -118,6 +118,11 @@ export type CueObjectFeaturesGql = {
shotDirection?: Maybe<ShotDirectionEnum>; shotDirection?: Maybe<ShotDirectionEnum>;
}; };
export type DeployedConfigGql = {
__typename?: "DeployedConfigGQL";
allowNewUsers: Scalars["Boolean"]["output"];
};
export enum DeviceTypeEnum { export enum DeviceTypeEnum {
Android = "ANDROID", Android = "ANDROID",
Browser = "BROWSER", Browser = "BROWSER",
@ -255,6 +260,7 @@ export type Query = {
__typename?: "Query"; __typename?: "Query";
getAggregatedShotMetrics: Array<AggregateResultGql>; getAggregatedShotMetrics: Array<AggregateResultGql>;
getBucketSet?: Maybe<BucketSetGql>; getBucketSet?: Maybe<BucketSetGql>;
getDeployedConfig: DeployedConfigGql;
getLoggedInUser?: Maybe<UserGql>; getLoggedInUser?: Maybe<UserGql>;
getShots: Array<ShotGql>; getShots: Array<ShotGql>;
getUser?: Maybe<UserGql>; getUser?: Maybe<UserGql>;

View File

@ -4,6 +4,7 @@ type Query {
): [AggregateResultGQL!]! ): [AggregateResultGQL!]!
getUser(userId: Int!): UserGQL getUser(userId: Int!): UserGQL
getLoggedInUser: UserGQL getLoggedInUser: UserGQL
getDeployedConfig: DeployedConfigGQL!
getVideo(videoId: Int!): VideoGQL! getVideo(videoId: Int!): VideoGQL!
getShots(filterInput: FilterInput = null): [ShotGQL!]! getShots(filterInput: FilterInput = null): [ShotGQL!]!
getBucketSet(keyName: String!): BucketSetGQL getBucketSet(keyName: String!): BucketSetGQL
@ -143,6 +144,10 @@ Decimal (fixed-point)
""" """
scalar Decimal scalar Decimal
type DeployedConfigGQL {
allowNewUsers: Boolean!
}
type VideoGQL { type VideoGQL {
id: Int! id: Int!
owner: UserGQL owner: UserGQL