Actually incorperate one of stuff
All checks were successful
Tests / Tests (pull_request) Successful in 6s

This commit is contained in:
2024-05-22 16:41:24 -06:00
parent 04a30e67d3
commit 33f5404820
2 changed files with 212 additions and 21 deletions

View File

@@ -43,7 +43,7 @@ input AggregateInputGQL {
filterInput: FilterInput
}
input AggregationInput {
input AggregationInput @oneOf {
bucketSet: BucketSetInputGQL
enum: EnumAggregation
}
@@ -62,7 +62,7 @@ input EnumAggregation {
feature: String!
}
input FilterInput {
input FilterInput @oneOf {
andFilters: [FilterInput!]
orFilters: [FilterInput!]
cueObjectDistance: RangeFilter
@@ -136,6 +136,7 @@ type ShotGQL {
cueObjectFeatures: CueObjectFeaturesGQL
pocketingIntentionFeatures: PocketingIntentionFeaturesGQL
bankFeatures: BankFeaturesGQL
serializedShotPaths: SerializedShotPathsGQL
user: UserGQL
}
@@ -169,6 +170,10 @@ enum WallTypeEnum {
SHORT
}
type SerializedShotPathsGQL {
b64EncodedBuffer: String
}
type UserGQL {
id: Int!
firebaseUid: String!