VehicleConnection
Definition
Get a list of minted vehicles ordered by tokenId
in descending order.
Developer Notes
This GraphQL connection refers to the plural vehicles
, hence an argument is needed in order for the query to target the specific subset of results.
Arguments
Field
Sub-field
Type
Description
Sample Query
{
vehicles(
first: 100
after: "NDIyMTg="
filterBy: { owner: "0x84B0EEeCD3bd243603df244D33587FF23c78D6B0" }
) {
nodes {
id
tokenId
owner
mintedAt
name
image
}
pageInfo {
startCursor
endCursor
hasPreviousPage
hasNextPage
}
}
}
Last updated
Was this helpful?