Query
query Dsyms {
dsyms {
nodes {
id
bundleName
binaryName
bundleIdentifier
shortVersion
bundleVersion
}
nextCursor
totalCount
matchingCount
}
}Response
{
"data": {
"dsyms": {
"nodes": [
{
"id": "id",
"bundleName": "string",
"binaryName": "string",
"bundleIdentifier": "string",
"shortVersion": "string",
"bundleVersion": "string"
}
],
"nextCursor": "string",
"totalCount": 1,
"matchingCount": 1
}
}
}Queries
dsyms
Lists indexed dSYMs, newest first.
QUERY
dsyms(filter: DsymFilter, first: Int, after: String): DsymConnection!Arguments
filter
Filters to apply.
first
Int
Maximum number of dSYMs to return, up to 200; defaults to 50.
after
String
Cursor from a previous page.
Returns
nodes
[Dsym!]!
dSYMs on this page, newest first.
nextCursor
String
Cursor for the next page. Null on the last page.
totalCount
Int!
Number of dSYMs stored.
matchingCount
Int!
Number of dSYMs matching the filter.
Query
query Dsyms {
dsyms {
nodes {
id
bundleName
binaryName
bundleIdentifier
shortVersion
bundleVersion
}
nextCursor
totalCount
matchingCount
}
}Response
{
"data": {
"dsyms": {
"nodes": [
{
"id": "id",
"bundleName": "string",
"binaryName": "string",
"bundleIdentifier": "string",
"shortVersion": "string",
"bundleVersion": "string"
}
],
"nextCursor": "string",
"totalCount": 1,
"matchingCount": 1
}
}
}