Set laod people to 1000

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2025-10-21 18:02:44 +02:00
parent e227b59208
commit 2f3df4d627
14 changed files with 48 additions and 48 deletions

View File

@@ -19,7 +19,7 @@ const peopleQuery = graphql`
query PeopleGraphQuery($organizationId: ID!, $filter: PeopleFilter) {
organization: node(id: $organizationId) {
... on Organization {
peoples(first: 100, orderBy: { direction: ASC, field: FULL_NAME }, filter: $filter) {
peoples(first: 1000, orderBy: { direction: ASC, field: FULL_NAME }, filter: $filter) {
edges {
node {
id

View File

@@ -1,5 +1,5 @@
/**
* @generated SignedSource<<83ae1b92ac910fa4ba9083a67eecaea9>>
* @generated SignedSource<<80c5f44dbb42b6501cd63d626d52518c>>
* @lightSyntaxTransform
* @nogrep
*/
@@ -238,7 +238,7 @@ return {
{
"kind": "Literal",
"name": "first",
"value": 500
"value": 1000
}
],
"concreteType": "DocumentVersionSignatureConnection",
@@ -277,7 +277,7 @@ return {
"storageKey": null
}
],
"storageKey": "signatures(first:500)"
"storageKey": "signatures(first:1000)"
}
],
"storageKey": null
@@ -377,12 +377,12 @@ return {
]
},
"params": {
"cacheID": "44b8abc69cfebb8f29adcc8a9fcddc3b",
"cacheID": "e3e170d0a40aa1d0d4d07d9d414704ce",
"id": null,
"metadata": {},
"name": "DocumentGraphListQuery",
"operationKind": "query",
"text": "query DocumentGraphListQuery(\n $organizationId: ID!\n) {\n organization: node(id: $organizationId) {\n __typename\n id\n ...DocumentsPageListFragment\n }\n}\n\nfragment DocumentsPageListFragment on Organization {\n documents(first: 50, orderBy: {field: TITLE, direction: ASC}) {\n edges {\n node {\n id\n ...DocumentsPageRowFragment\n __typename\n }\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n id\n}\n\nfragment DocumentsPageRowFragment on Document {\n id\n title\n description\n documentType\n updatedAt\n owner {\n id\n fullName\n }\n versions(first: 1) {\n edges {\n node {\n id\n status\n version\n signatures(first: 500) {\n edges {\n node {\n id\n state\n }\n }\n }\n }\n }\n }\n}\n"
"text": "query DocumentGraphListQuery(\n $organizationId: ID!\n) {\n organization: node(id: $organizationId) {\n __typename\n id\n ...DocumentsPageListFragment\n }\n}\n\nfragment DocumentsPageListFragment on Organization {\n documents(first: 50, orderBy: {field: TITLE, direction: ASC}) {\n edges {\n node {\n id\n ...DocumentsPageRowFragment\n __typename\n }\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n id\n}\n\nfragment DocumentsPageRowFragment on Document {\n id\n title\n description\n documentType\n updatedAt\n owner {\n id\n fullName\n }\n versions(first: 1) {\n edges {\n node {\n id\n status\n version\n signatures(first: 1000) {\n edges {\n node {\n id\n state\n }\n }\n }\n }\n }\n }\n}\n"
}
};
})();

View File

@@ -1,5 +1,5 @@
/**
* @generated SignedSource<<3b517368f8d0fc79e1c5c60e56c00b4d>>
* @generated SignedSource<<d4ad1b45197821a3ac5d59350a5646d8>>
* @lightSyntaxTransform
* @nogrep
*/
@@ -110,7 +110,7 @@ v11 = [
{
"kind": "Literal",
"name": "first",
"value": 500
"value": 1000
}
],
v12 = {
@@ -464,7 +464,7 @@ return {
(v12/*: any*/),
(v10/*: any*/)
],
"storageKey": "signatures(first:500)"
"storageKey": "signatures(first:1000)"
},
{
"alias": null,
@@ -518,12 +518,12 @@ return {
]
},
"params": {
"cacheID": "d77cc1c3f05f4be15b7c50b90b8a4704",
"cacheID": "4dd1a6c2a9117deb789984766f9c3b36",
"id": null,
"metadata": {},
"name": "DocumentGraphNodeQuery",
"operationKind": "query",
"text": "query DocumentGraphNodeQuery(\n $documentId: ID!\n) {\n node(id: $documentId) {\n __typename\n ... on Document {\n ...DocumentDetailPageDocumentFragment\n }\n id\n }\n}\n\nfragment DocumentControlsTabFragment on Document {\n id\n controls(first: 20) {\n edges {\n node {\n id\n ...LinkedControlsCardFragment\n __typename\n }\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n}\n\nfragment DocumentDetailPageDocumentFragment on Document {\n id\n title\n documentType\n owner {\n id\n fullName\n }\n ...DocumentControlsTabFragment\n controlsInfo: controls(first: 0) {\n totalCount\n }\n versions(first: 20) {\n edges {\n node {\n id\n content\n status\n publishedAt\n version\n updatedAt\n ...DocumentSignaturesTab_version\n signatures(first: 500) {\n edges {\n node {\n id\n state\n signedBy {\n id\n }\n ...DocumentSignaturesTab_signature\n __typename\n }\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n }\n }\n __typename\n }\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n }\n }\n}\n\nfragment DocumentSignaturesTab_signature on DocumentVersionSignature {\n id\n state\n signedAt\n requestedAt\n signedBy {\n fullName\n primaryEmailAddress\n id\n }\n}\n\nfragment DocumentSignaturesTab_version on DocumentVersion {\n id\n status\n signatures(first: 500) {\n edges {\n node {\n id\n state\n signedBy {\n id\n fullName\n primaryEmailAddress\n }\n ...DocumentSignaturesTab_signature\n __typename\n }\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n }\n }\n}\n\nfragment LinkedControlsCardFragment on Control {\n id\n name\n sectionTitle\n framework {\n id\n name\n }\n}\n"
"text": "query DocumentGraphNodeQuery(\n $documentId: ID!\n) {\n node(id: $documentId) {\n __typename\n ... on Document {\n ...DocumentDetailPageDocumentFragment\n }\n id\n }\n}\n\nfragment DocumentControlsTabFragment on Document {\n id\n controls(first: 20) {\n edges {\n node {\n id\n ...LinkedControlsCardFragment\n __typename\n }\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n}\n\nfragment DocumentDetailPageDocumentFragment on Document {\n id\n title\n documentType\n owner {\n id\n fullName\n }\n ...DocumentControlsTabFragment\n controlsInfo: controls(first: 0) {\n totalCount\n }\n versions(first: 20) {\n edges {\n node {\n id\n content\n status\n publishedAt\n version\n updatedAt\n ...DocumentSignaturesTab_version\n signatures(first: 1000) {\n edges {\n node {\n id\n state\n signedBy {\n id\n }\n ...DocumentSignaturesTab_signature\n __typename\n }\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n }\n }\n __typename\n }\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n }\n }\n}\n\nfragment DocumentSignaturesTab_signature on DocumentVersionSignature {\n id\n state\n signedAt\n requestedAt\n signedBy {\n fullName\n primaryEmailAddress\n id\n }\n}\n\nfragment DocumentSignaturesTab_version on DocumentVersion {\n id\n status\n signatures(first: 1000) {\n edges {\n node {\n id\n state\n signedBy {\n id\n fullName\n primaryEmailAddress\n }\n ...DocumentSignaturesTab_signature\n __typename\n }\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n }\n }\n}\n\nfragment LinkedControlsCardFragment on Control {\n id\n name\n sectionTitle\n framework {\n id\n name\n }\n}\n"
}
};
})();

View File

@@ -1,5 +1,5 @@
/**
* @generated SignedSource<<f8f5d2692a9b278d16d997a3ba952b03>>
* @generated SignedSource<<3b196ff5779051fcd1ed9cca6b7be112>>
* @lightSyntaxTransform
* @nogrep
*/
@@ -73,7 +73,7 @@ v4 = {
{
"kind": "Literal",
"name": "first",
"value": 100
"value": 1000
},
{
"kind": "Literal",
@@ -191,16 +191,16 @@ return {
]
},
"params": {
"cacheID": "cfb5be60bd39783154a815d178a8fa51",
"cacheID": "3b6dc3ae9df52a04b5d496b68f8c26f4",
"id": null,
"metadata": {},
"name": "PeopleGraphQuery",
"operationKind": "query",
"text": "query PeopleGraphQuery(\n $organizationId: ID!\n $filter: PeopleFilter\n) {\n organization: node(id: $organizationId) {\n __typename\n ... on Organization {\n peoples(first: 100, orderBy: {direction: ASC, field: FULL_NAME}, filter: $filter) {\n edges {\n node {\n id\n fullName\n primaryEmailAddress\n }\n }\n }\n }\n id\n }\n}\n"
"text": "query PeopleGraphQuery(\n $organizationId: ID!\n $filter: PeopleFilter\n) {\n organization: node(id: $organizationId) {\n __typename\n ... on Organization {\n peoples(first: 1000, orderBy: {direction: ASC, field: FULL_NAME}, filter: $filter) {\n edges {\n node {\n id\n fullName\n primaryEmailAddress\n }\n }\n }\n }\n id\n }\n}\n"
}
};
})();
(node as any).hash = "79f4d511be3c7cfa63a774ac017a6f41";
(node as any).hash = "f1ce35948ab8dcd05c83e13ad83d93cd";
export default node;

View File

@@ -102,7 +102,7 @@ const documentFragment = graphql`
version
updatedAt
...DocumentSignaturesTab_version
signatures(first: 500)
signatures(first: 1000)
@connection(key: "DocumentDetailPage_signatures", filters: []) {
__id
edges {

View File

@@ -341,7 +341,7 @@ const rowFragment = graphql`
id
status
version
signatures(first: 500) {
signatures(first: 1000) {
edges {
node {
id

View File

@@ -1,5 +1,5 @@
/**
* @generated SignedSource<<79bf0f8ac3d41ba5c456ddae462e2c6d>>
* @generated SignedSource<<c39dd56e0397cd63ae1d2da95977694c>>
* @lightSyntaxTransform
* @nogrep
*/
@@ -350,6 +350,6 @@ return {
};
})();
(node as any).hash = "ce3a8422f4391952a8ad839ff874c5cf";
(node as any).hash = "f1a7ec789a05b74cade1d3024119a844";
export default node;

View File

@@ -1,5 +1,5 @@
/**
* @generated SignedSource<<fc23e650e605a834fa70eab4d2a62cd2>>
* @generated SignedSource<<739800753f29986463be3d9e4316a44a>>
* @lightSyntaxTransform
* @nogrep
*/
@@ -313,7 +313,7 @@ return {
{
"kind": "Literal",
"name": "first",
"value": 500
"value": 1000
}
],
"concreteType": "DocumentVersionSignatureConnection",
@@ -352,7 +352,7 @@ return {
"storageKey": null
}
],
"storageKey": "signatures(first:500)"
"storageKey": "signatures(first:1000)"
}
],
"storageKey": null
@@ -452,12 +452,12 @@ return {
]
},
"params": {
"cacheID": "32e25ba27cb9ad12640c0e338c16a804",
"cacheID": "ce2facebbd111ac1b3398933a5a06a05",
"id": null,
"metadata": {},
"name": "DocumentsListQuery",
"operationKind": "query",
"text": "query DocumentsListQuery(\n $after: CursorKey = null\n $before: CursorKey = null\n $first: Int = 50\n $last: Int = null\n $order: DocumentOrder = {field: TITLE, direction: ASC}\n $id: ID!\n) {\n node(id: $id) {\n __typename\n ...DocumentsPageListFragment_16fISc\n id\n }\n}\n\nfragment DocumentsPageListFragment_16fISc on Organization {\n documents(first: $first, after: $after, last: $last, before: $before, orderBy: $order) {\n edges {\n node {\n id\n ...DocumentsPageRowFragment\n __typename\n }\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n id\n}\n\nfragment DocumentsPageRowFragment on Document {\n id\n title\n description\n documentType\n updatedAt\n owner {\n id\n fullName\n }\n versions(first: 1) {\n edges {\n node {\n id\n status\n version\n signatures(first: 500) {\n edges {\n node {\n id\n state\n }\n }\n }\n }\n }\n }\n}\n"
"text": "query DocumentsListQuery(\n $after: CursorKey = null\n $before: CursorKey = null\n $first: Int = 50\n $last: Int = null\n $order: DocumentOrder = {field: TITLE, direction: ASC}\n $id: ID!\n) {\n node(id: $id) {\n __typename\n ...DocumentsPageListFragment_16fISc\n id\n }\n}\n\nfragment DocumentsPageListFragment_16fISc on Organization {\n documents(first: $first, after: $after, last: $last, before: $before, orderBy: $order) {\n edges {\n node {\n id\n ...DocumentsPageRowFragment\n __typename\n }\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n id\n}\n\nfragment DocumentsPageRowFragment on Document {\n id\n title\n description\n documentType\n updatedAt\n owner {\n id\n fullName\n }\n versions(first: 1) {\n edges {\n node {\n id\n status\n version\n signatures(first: 1000) {\n edges {\n node {\n id\n state\n }\n }\n }\n }\n }\n }\n}\n"
}
};
})();

View File

@@ -1,5 +1,5 @@
/**
* @generated SignedSource<<fdb5315d1a51b72e6f80370036f0f89d>>
* @generated SignedSource<<96486371decaf730cf0a559125086bd8>>
* @lightSyntaxTransform
* @nogrep
*/
@@ -160,7 +160,7 @@ return {
{
"kind": "Literal",
"name": "first",
"value": 500
"value": 1000
}
],
"concreteType": "DocumentVersionSignatureConnection",
@@ -199,7 +199,7 @@ return {
"storageKey": null
}
],
"storageKey": "signatures(first:500)"
"storageKey": "signatures(first:1000)"
}
],
"storageKey": null
@@ -216,6 +216,6 @@ return {
};
})();
(node as any).hash = "66c9a0719081e20b4c796638b2f9976f";
(node as any).hash = "4151906ef10da152d053c46af6b9f890";
export default node;

View File

@@ -1,5 +1,5 @@
/**
* @generated SignedSource<<d3b46cd525209def686ba33f7d6ff9bd>>
* @generated SignedSource<<429de5dec69b88e0abedd39ecac81ee3>>
* @lightSyntaxTransform
* @nogrep
*/
@@ -249,7 +249,7 @@ return {
{
"kind": "Literal",
"name": "first",
"value": 500
"value": 1000
}
],
"concreteType": "DocumentVersionSignatureConnection",
@@ -288,7 +288,7 @@ return {
"storageKey": null
}
],
"storageKey": "signatures(first:500)"
"storageKey": "signatures(first:1000)"
}
],
"storageKey": null
@@ -327,12 +327,12 @@ return {
]
},
"params": {
"cacheID": "b43db972b1b28672faa60267ad642e43",
"cacheID": "0a5f7934a498b696a268943176bdf910",
"id": null,
"metadata": {},
"name": "CreateDocumentDialogMutation",
"operationKind": "mutation",
"text": "mutation CreateDocumentDialogMutation(\n $input: CreateDocumentInput!\n) {\n createDocument(input: $input) {\n documentEdge {\n node {\n id\n ...DocumentsPageRowFragment\n }\n }\n }\n}\n\nfragment DocumentsPageRowFragment on Document {\n id\n title\n description\n documentType\n updatedAt\n owner {\n id\n fullName\n }\n versions(first: 1) {\n edges {\n node {\n id\n status\n version\n signatures(first: 500) {\n edges {\n node {\n id\n state\n }\n }\n }\n }\n }\n }\n}\n"
"text": "mutation CreateDocumentDialogMutation(\n $input: CreateDocumentInput!\n) {\n createDocument(input: $input) {\n documentEdge {\n node {\n id\n ...DocumentsPageRowFragment\n }\n }\n }\n}\n\nfragment DocumentsPageRowFragment on Document {\n id\n title\n description\n documentType\n updatedAt\n owner {\n id\n fullName\n }\n versions(first: 1) {\n edges {\n node {\n id\n status\n version\n signatures(first: 1000) {\n edges {\n node {\n id\n state\n }\n }\n }\n }\n }\n }\n}\n"
}
};
})();

View File

@@ -1,5 +1,5 @@
/**
* @generated SignedSource<<e35bdd76924adcc49210173df6dabdc3>>
* @generated SignedSource<<18ebf050c9c9ec64b126385ad8b8dd7d>>
* @lightSyntaxTransform
* @nogrep
*/
@@ -233,7 +233,7 @@ return {
{
"kind": "Literal",
"name": "first",
"value": 500
"value": 1000
}
],
"concreteType": "DocumentVersionSignatureConnection",
@@ -272,7 +272,7 @@ return {
"storageKey": null
}
],
"storageKey": "signatures(first:500)"
"storageKey": "signatures(first:1000)"
}
],
"storageKey": null
@@ -295,12 +295,12 @@ return {
]
},
"params": {
"cacheID": "2ea3e8b6baf3eeb5b5b38f3e21b5998f",
"cacheID": "5c79c67dcab25c8ead714ff999b0e7cf",
"id": null,
"metadata": {},
"name": "PublishDocumentsDialogMutation",
"operationKind": "mutation",
"text": "mutation PublishDocumentsDialogMutation(\n $input: BulkPublishDocumentVersionsInput!\n) {\n bulkPublishDocumentVersions(input: $input) {\n documentEdges {\n node {\n id\n ...DocumentsPageRowFragment\n }\n }\n }\n}\n\nfragment DocumentsPageRowFragment on Document {\n id\n title\n description\n documentType\n updatedAt\n owner {\n id\n fullName\n }\n versions(first: 1) {\n edges {\n node {\n id\n status\n version\n signatures(first: 500) {\n edges {\n node {\n id\n state\n }\n }\n }\n }\n }\n }\n}\n"
"text": "mutation PublishDocumentsDialogMutation(\n $input: BulkPublishDocumentVersionsInput!\n) {\n bulkPublishDocumentVersions(input: $input) {\n documentEdges {\n node {\n id\n ...DocumentsPageRowFragment\n }\n }\n }\n}\n\nfragment DocumentsPageRowFragment on Document {\n id\n title\n description\n documentType\n updatedAt\n owner {\n id\n fullName\n }\n versions(first: 1) {\n edges {\n node {\n id\n status\n version\n signatures(first: 1000) {\n edges {\n node {\n id\n state\n }\n }\n }\n }\n }\n }\n}\n"
}
};
})();

View File

@@ -27,7 +27,7 @@ const versionFragment = graphql`
fragment DocumentSignaturesTab_version on DocumentVersion
@refetchable(queryName: "DocumentSignaturesTabRefetchQuery")
@argumentDefinitions(
count: { type: "Int", defaultValue: 500 }
count: { type: "Int", defaultValue: 1000 }
cursor: { type: "CursorKey" }
signatureFilter: { type: "DocumentVersionSignatureFilter" }
) {

View File

@@ -1,5 +1,5 @@
/**
* @generated SignedSource<<6e738ec6de4916bb47e6698ef348a702>>
* @generated SignedSource<<daaba0a12d115e8691984612356d4234>>
* @lightSyntaxTransform
* @nogrep
*/
@@ -32,7 +32,7 @@ export type DocumentSignaturesTabRefetchQuery = {
const node: ConcreteRequest = (function(){
var v0 = {
"defaultValue": 500,
"defaultValue": 1000,
"kind": "LocalArgument",
"name": "count"
},
@@ -315,16 +315,16 @@ return {
]
},
"params": {
"cacheID": "3f2497c26794429a940d920be7459a16",
"cacheID": "d7b2a5ca29001eca591507471d4178cc",
"id": null,
"metadata": {},
"name": "DocumentSignaturesTabRefetchQuery",
"operationKind": "query",
"text": "query DocumentSignaturesTabRefetchQuery(\n $count: Int = 500\n $cursor: CursorKey\n $signatureFilter: DocumentVersionSignatureFilter\n $id: ID!\n) {\n node(id: $id) {\n __typename\n ...DocumentSignaturesTab_version_1vp7QE\n id\n }\n}\n\nfragment DocumentSignaturesTab_signature on DocumentVersionSignature {\n id\n state\n signedAt\n requestedAt\n signedBy {\n fullName\n primaryEmailAddress\n id\n }\n}\n\nfragment DocumentSignaturesTab_version_1vp7QE on DocumentVersion {\n id\n status\n signatures(first: $count, after: $cursor, filter: $signatureFilter) {\n edges {\n node {\n id\n state\n signedBy {\n id\n fullName\n primaryEmailAddress\n }\n ...DocumentSignaturesTab_signature\n __typename\n }\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n }\n }\n}\n"
"text": "query DocumentSignaturesTabRefetchQuery(\n $count: Int = 1000\n $cursor: CursorKey\n $signatureFilter: DocumentVersionSignatureFilter\n $id: ID!\n) {\n node(id: $id) {\n __typename\n ...DocumentSignaturesTab_version_1vp7QE\n id\n }\n}\n\nfragment DocumentSignaturesTab_signature on DocumentVersionSignature {\n id\n state\n signedAt\n requestedAt\n signedBy {\n fullName\n primaryEmailAddress\n id\n }\n}\n\nfragment DocumentSignaturesTab_version_1vp7QE on DocumentVersion {\n id\n status\n signatures(first: $count, after: $cursor, filter: $signatureFilter) {\n edges {\n node {\n id\n state\n signedBy {\n id\n fullName\n primaryEmailAddress\n }\n ...DocumentSignaturesTab_signature\n __typename\n }\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n }\n }\n}\n"
}
};
})();
(node as any).hash = "8692b71c860fba2b26a641a637920930";
(node as any).hash = "497571b827200e09a848436820668d10";
export default node;

View File

@@ -1,5 +1,5 @@
/**
* @generated SignedSource<<c96d08087a8501e73c3600304efc444a>>
* @generated SignedSource<<328e9d55b6661d3330cb961426393d6f>>
* @lightSyntaxTransform
* @nogrep
*/
@@ -53,7 +53,7 @@ v1 = {
return {
"argumentDefinitions": [
{
"defaultValue": 500,
"defaultValue": 1000,
"kind": "LocalArgument",
"name": "count"
},
@@ -242,6 +242,6 @@ return {
};
})();
(node as any).hash = "8692b71c860fba2b26a641a637920930";
(node as any).hash = "497571b827200e09a848436820668d10";
export default node;