-
ag subgraph list- No network call. Returns canonical alias definitions.
-
ag subgraph check --source core-base|gbm-base [--raw]- Runs introspection query.
- Output includes sorted query field names.
-
ag subgraph query --source <alias> (--query <graphql> | --query-file <path>) [--variables-json <json>] [--raw] [--timeout-ms <ms>] [--auth-env-var <ENV>] [--subgraph-url <url> --allow-untrusted-subgraph]
-
ag baazaar listing get --kind erc721 --id <listingId> [--verify-onchain] [--raw]- Query:
erc721Listing(id: $id) - Verify path: compares to
getERC721Listingon Base Aavegotchi diamond.
- Query:
-
ag baazaar listing get --kind erc1155 --id <listingId> [--verify-onchain] [--raw]- Query:
erc1155Listing(id: $id) - Verify path: compares to
getERC1155Listingon Base Aavegotchi diamond.
- Query:
-
ag baazaar listing active --kind erc721 [--first <n>] [--skip <n>] [--raw]- Filter:
{ cancelled: false, timePurchased: "0" }
- Filter:
-
ag baazaar listing active --kind erc1155 [--first <n>] [--skip <n>] [--raw]- Filter:
{ cancelled: false, sold: false }
- Filter:
-
ag baazaar listing mine --kind erc721 --seller <0x...> [--first <n>] [--skip <n>] [--raw]- Filter:
{ seller: $seller }(Bytes, lowercase)
- Filter:
-
ag baazaar listing mine --kind erc1155 --seller <0x...> [--first <n>] [--skip <n>] [--raw]- Filter:
{ seller: $seller }(Bytes, lowercase)
- Filter:
-
ag auction get --id <auctionId> [--verify-onchain] [--raw]- Query:
auction(id: $id) - Verify path compares to
getAuctionHighestBid,getContractAddress,getTokenId,getAuctionStartTime,getAuctionEndTime.
- Query:
-
ag auction active [--first <n>] [--skip <n>] [--at-time <unix>] [--raw]- Filter:
{ claimed: false, cancelled: false, startsAt_lte: $now, endsAt_gt: $now }
- Filter:
-
ag auction mine --seller <0x...> [--first <n>] [--skip <n>] [--raw]- Filter:
{ seller: $seller }(Bytes, lowercase)
- Filter:
-
ag auction bids --auction-id <id> [--first <n>] [--skip <n>] [--raw]- Filter:
{ auction: $auctionId }
- Filter:
-
ag auction bids-mine --bidder <0x...> [--first <n>] [--skip <n>] [--raw]- Filter:
{ bidder: $bidder }(Bytes, lowercase)
- Filter:
--firstdefault20, min1, max200--skipdefault0, min0, max100000- No auto-pagination in v0.2.0
All commands return envelope:
schemaVersioncommandstatusdatameta
Typed response payload includes:
sourceendpointqueryNamepaginationwhere applicable- normalized entity fields
--raw adds raw with complete GraphQL payload while preserving typed projection.