macros
QUERY
macros(page: Int, perPage: Int, searchValue: String): NodesPaginatedResponseArguments
page
Int
perPage
Int
searchValue
String
Returns
data
[Node]!
pagination
Query
query Macros {
macros {
data {
_id
ns
type
automationId
automationNs
automationName
}
pagination {
currentPage
perPage
totalCount
totalPages
hasNextPage
hasPreviousPage
}
}
}Response
{
"data": {
"macros": {
"data": [
{
"_id": "string",
"ns": "string",
"type": "string",
"automationId": "string",
"automationNs": "string",
"automationName": "string"
}
],
"pagination": {
"currentPage": 1,
"perPage": 1,
"totalCount": 1,
"totalPages": 1,
"hasNextPage": true,
"hasPreviousPage": true
}
}
}
}Last modified on August 9, 2026
Was this page helpful?
⌘I
Query
query Macros {
macros {
data {
_id
ns
type
automationId
automationNs
automationName
}
pagination {
currentPage
perPage
totalCount
totalPages
hasNextPage
hasPreviousPage
}
}
}Response
{
"data": {
"macros": {
"data": [
{
"_id": "string",
"ns": "string",
"type": "string",
"automationId": "string",
"automationNs": "string",
"automationName": "string"
}
],
"pagination": {
"currentPage": 1,
"perPage": 1,
"totalCount": 1,
"totalPages": 1,
"hasNextPage": true,
"hasPreviousPage": true
}
}
}
}