add limit and countRespectsLimit args
All checks were successful
Tests / Tests (pull_request) Successful in 9s
All checks were successful
Tests / Tests (pull_request) Successful in 9s
This commit is contained in:
parent
170ff70b7a
commit
0160455b9f
@ -3593,6 +3593,8 @@ export type GetRunsForHighlightsQueryVariables = Exact<{
|
||||
filterInput: RunFilterInput;
|
||||
runIds?: InputMaybe<Array<Scalars["Int"]["input"]> | Scalars["Int"]["input"]>;
|
||||
runsOrdering?: InputMaybe<GetRunsOrdering>;
|
||||
limit?: Scalars["Int"]["input"];
|
||||
countRespectsLimit?: Scalars["Boolean"]["input"];
|
||||
}>;
|
||||
|
||||
export type GetRunsForHighlightsQuery = {
|
||||
@ -6060,11 +6062,15 @@ export const GetRunsForHighlightsDocument = gql`
|
||||
$filterInput: RunFilterInput!
|
||||
$runIds: [Int!] = null
|
||||
$runsOrdering: GetRunsOrdering
|
||||
$limit: Int! = 500
|
||||
$countRespectsLimit: Boolean! = false
|
||||
) {
|
||||
getRuns(
|
||||
filterInput: $filterInput
|
||||
runIds: $runIds
|
||||
runsOrdering: $runsOrdering
|
||||
limit: $limit
|
||||
countRespectsLimit: $countRespectsLimit
|
||||
) {
|
||||
count
|
||||
runs {
|
||||
@ -6097,6 +6103,8 @@ export const GetRunsForHighlightsDocument = gql`
|
||||
* filterInput: // value for 'filterInput'
|
||||
* runIds: // value for 'runIds'
|
||||
* runsOrdering: // value for 'runsOrdering'
|
||||
* limit: // value for 'limit'
|
||||
* countRespectsLimit: // value for 'countRespectsLimit'
|
||||
* },
|
||||
* });
|
||||
*/
|
||||
|
@ -2,11 +2,15 @@ query GetRunsForHighlights(
|
||||
$filterInput: RunFilterInput!
|
||||
$runIds: [Int!] = null
|
||||
$runsOrdering: GetRunsOrdering
|
||||
$limit: Int! = 500
|
||||
$countRespectsLimit: Boolean! = false
|
||||
) {
|
||||
getRuns(
|
||||
filterInput: $filterInput
|
||||
runIds: $runIds
|
||||
runsOrdering: $runsOrdering
|
||||
limit: $limit
|
||||
countRespectsLimit: $countRespectsLimit
|
||||
) {
|
||||
count
|
||||
runs {
|
||||
|
Loading…
x
Reference in New Issue
Block a user