Queries
aecDesignsByFolderAndSubFolders
Retrieves designs in the given folder and it’s sub-folders recursively, using additional RSQL filters if provided.
Template for Query:
query GetAecDesignsByFolderAndSubFolders($folderId: ID!, $filter: AECDesignFilterInput, $pagination: PaginationInput) {
aecDesignsByFolderAndSubFolders(folderId: $folderId, filter: $filter, pagination: $pagination) {
# AecDesignsByFolderAndSubFolders Fields
}
}
Template for Query Variables:
{
"folderId" : "<SOME-ID-TYPE-SCALAR-VALUE>",
"filter" : "<SOME-AECDESIGNFILTER-INPUT-TYPE-VALUE>",
"pagination" : "<SOME-PAGINATION-INPUT-TYPE-VALUE>"
}
Arguments
folderId* ID! non-null | Folder to recursively retrieve designs from. |
filter | RSQL filter to use for searching designs. |
pagination | Specifies how to split the response into multiple pages. |
* Required
Possible Returns
Value Type | Description |
---|---|
AECDesigns! non-null |
Contains a list of AECDesigns returned in response to a query. |
Examples
Example 1
Retrieves aecDesigns under a folder and it’s sub-folders by folder ID.
Query:
query GetAECDesignsByFolderAndSubFolders($folderId: ID!, $pagination: PaginationInput) {
aecDesignsByFolderAndSubFolders(folderId: $folderId, pagination: $pagination) {
pagination {
pageSize
cursor
}
results {
id
name
}
}
}
Show More
Query Variables:
{
"folderId": "Zm9sZH5iLmU0ZmJkMzE1LTJkYzUtNDAyNi04Y2EzLTgwZjA5ZDI0ZmY0Mn5iLjdhZGJmOWZkLWRlYmItNDI5Yy1iZmU1LTMyYTNjMjJjMDY5NX51cm46YWRzay53aXBzdGc6ZnMuZm9sZGVyOmNvLmxyOFNEUG02UnZPNy1zSmlyVXNqd0E",
"pagination": {
"limit": 5
}
}
Response:
{
"data": {
"aecDesignsByFolderAndSubFolders": {
"pagination": {
"pageSize": 5,
"cursor": "Y3Vyc35CUT09fjU"
},
"results": [
{
"id": "YWVjZH5FMnRqOFJFOXRsSlRQNU9WVzBiaDZ4X0wyQ353Zk40UFBDLVJoR1luZ2M3YncxYUZB",
"name": "P95_09615_ABT-C_Groninger_forum.rvt"
},
{
"id": "YWVjZH5FMnRqOFJFOXRsSlRQNU9WVzBiaDZ4X0wyQ34zV2h1eXQzcFRtTzZaM1d2eU5WTmlB",
"name": "P75_gCUB4.0_MEP_2024.rvt"
},
{
"id": "YWVjZH5FMnRqOFJFOXRsSlRQNU9WVzBiaDZ4X0wyQ35hb2g0Y09pZlRFeW9ncWtQMGVxcWZ3",
"name": "P75_215071-00.rvt"
},
{
"id": "YWVjZH5FMnRqOFJFOXRsSlRQNU9WVzBiaDZ4X0wyQ34zSFJQeGcwa1NpZUUzM0xuS3oxSDVR",
"name": "P75_gCUB4.0_STR.rvt"
},
{
"id": "YWVjZH5FMnRqOFJFOXRsSlRQNU9WVzBiaDZ4X0wyQ35jWXJ2RXJfbFRuS19OYkl0UzRZTlJR",
"name": "P75_LTU Housing - Arch.rvt"
}
]
}
}
}
Show More