adds get deployed configuration query
This commit is contained in:
parent
18c12e60fe
commit
54428112f8
@ -118,6 +118,11 @@ export type CueObjectFeaturesGql = {
|
||||
shotDirection?: Maybe<ShotDirectionEnum>;
|
||||
};
|
||||
|
||||
export type DeployedConfigGql = {
|
||||
__typename?: "DeployedConfigGQL";
|
||||
allowNewUsers: Scalars["Boolean"]["output"];
|
||||
};
|
||||
|
||||
export enum DeviceTypeEnum {
|
||||
Android = "ANDROID",
|
||||
Browser = "BROWSER",
|
||||
@ -255,6 +260,7 @@ export type Query = {
|
||||
__typename?: "Query";
|
||||
getAggregatedShotMetrics: Array<AggregateResultGql>;
|
||||
getBucketSet?: Maybe<BucketSetGql>;
|
||||
getDeployedConfig: DeployedConfigGql;
|
||||
getLoggedInUser?: Maybe<UserGql>;
|
||||
getShots: Array<ShotGql>;
|
||||
getUser?: Maybe<UserGql>;
|
||||
|
@ -4,6 +4,7 @@ type Query {
|
||||
): [AggregateResultGQL!]!
|
||||
getUser(userId: Int!): UserGQL
|
||||
getLoggedInUser: UserGQL
|
||||
getDeployedConfig: DeployedConfigGQL!
|
||||
getVideo(videoId: Int!): VideoGQL!
|
||||
getShots(filterInput: FilterInput = null): [ShotGQL!]!
|
||||
getBucketSet(keyName: String!): BucketSetGQL
|
||||
@ -143,6 +144,10 @@ Decimal (fixed-point)
|
||||
"""
|
||||
scalar Decimal
|
||||
|
||||
type DeployedConfigGQL {
|
||||
allowNewUsers: Boolean!
|
||||
}
|
||||
|
||||
type VideoGQL {
|
||||
id: Int!
|
||||
owner: UserGQL
|
||||
|
Loading…
Reference in New Issue
Block a user