Regenerate schema for leaderboard taxonomy filters
All checks were successful
Tests / Tests (pull_request) Successful in 11s
All checks were successful
Tests / Tests (pull_request) Successful in 11s
Adds the optional taxonomy args to getLongestRunsLeaderboard and getMakesLeaderboard (gameType, rankedOnly, excludeDrills, and table/pocket size bounds) generated from the backend resolvers. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -3195,14 +3195,28 @@ export type QueryGetLiveTableStateArgs = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export type QueryGetLongestRunsLeaderboardArgs = {
|
export type QueryGetLongestRunsLeaderboardArgs = {
|
||||||
|
excludeDrills?: Scalars["Boolean"]["input"];
|
||||||
|
gameType?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
interval?: InputMaybe<TimeInterval>;
|
interval?: InputMaybe<TimeInterval>;
|
||||||
limit?: Scalars["Int"]["input"];
|
limit?: Scalars["Int"]["input"];
|
||||||
|
pocketSizeMax?: InputMaybe<Scalars["Float"]["input"]>;
|
||||||
|
pocketSizeMin?: InputMaybe<Scalars["Float"]["input"]>;
|
||||||
|
rankedOnly?: Scalars["Boolean"]["input"];
|
||||||
requiredTags?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
requiredTags?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
||||||
|
tableSizeMax?: InputMaybe<Scalars["Float"]["input"]>;
|
||||||
|
tableSizeMin?: InputMaybe<Scalars["Float"]["input"]>;
|
||||||
when?: InputMaybe<Scalars["DateTime"]["input"]>;
|
when?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type QueryGetMakesLeaderboardArgs = {
|
export type QueryGetMakesLeaderboardArgs = {
|
||||||
|
excludeDrills?: Scalars["Boolean"]["input"];
|
||||||
|
gameType?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
interval?: InputMaybe<TimeInterval>;
|
interval?: InputMaybe<TimeInterval>;
|
||||||
|
pocketSizeMax?: InputMaybe<Scalars["Float"]["input"]>;
|
||||||
|
pocketSizeMin?: InputMaybe<Scalars["Float"]["input"]>;
|
||||||
|
rankedOnly?: Scalars["Boolean"]["input"];
|
||||||
|
tableSizeMax?: InputMaybe<Scalars["Float"]["input"]>;
|
||||||
|
tableSizeMin?: InputMaybe<Scalars["Float"]["input"]>;
|
||||||
when?: InputMaybe<Scalars["DateTime"]["input"]>;
|
when?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1005,6 +1005,13 @@ type Query {
|
|||||||
when: DateTime = null
|
when: DateTime = null
|
||||||
limit: Int! = 50
|
limit: Int! = 50
|
||||||
requiredTags: [String!] = null
|
requiredTags: [String!] = null
|
||||||
|
gameType: String = null
|
||||||
|
rankedOnly: Boolean! = false
|
||||||
|
excludeDrills: Boolean! = true
|
||||||
|
tableSizeMin: Float = null
|
||||||
|
tableSizeMax: Float = null
|
||||||
|
pocketSizeMin: Float = null
|
||||||
|
pocketSizeMax: Float = null
|
||||||
): RunLeaderboardGQL!
|
): RunLeaderboardGQL!
|
||||||
getDrillRunLeaderboard(
|
getDrillRunLeaderboard(
|
||||||
drillTag: String!
|
drillTag: String!
|
||||||
@@ -1019,6 +1026,13 @@ type Query {
|
|||||||
getMakesLeaderboard(
|
getMakesLeaderboard(
|
||||||
interval: TimeInterval = null
|
interval: TimeInterval = null
|
||||||
when: DateTime = null
|
when: DateTime = null
|
||||||
|
gameType: String = null
|
||||||
|
rankedOnly: Boolean! = false
|
||||||
|
excludeDrills: Boolean! = true
|
||||||
|
tableSizeMin: Float = null
|
||||||
|
tableSizeMax: Float = null
|
||||||
|
pocketSizeMin: Float = null
|
||||||
|
pocketSizeMax: Float = null
|
||||||
): CountLeaderboardGQL!
|
): CountLeaderboardGQL!
|
||||||
getMedals(scope: MedalScope!, userId: Int = null): RequestedMedalsGQL!
|
getMedals(scope: MedalScope!, userId: Int = null): RequestedMedalsGQL!
|
||||||
notifications(
|
notifications(
|
||||||
|
|||||||
Reference in New Issue
Block a user