Update GQL schema types with arguments on plural fields #7
@ -1632,14 +1632,14 @@ type User {
|
|||||||
id: ID!
|
id: ID!
|
||||||
createdAt: BigInt!
|
createdAt: BigInt!
|
||||||
transactionCount: BigInt!
|
transactionCount: BigInt!
|
||||||
transactions: [Transaction!]!
|
transactions (orderBy: Transaction_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Transaction!]!
|
||||||
orderCount: BigInt!
|
orderCount: BigInt!
|
||||||
orders: [Order!]!
|
orders (orderBy: Order_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Order!]!
|
||||||
liquidationCount: BigInt!
|
liquidationCount: BigInt!
|
||||||
liquidations: [Liquidation!]!
|
liquidations (orderBy: Liquidation_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Liquidation!]!
|
||||||
transferCount: BigInt!
|
transferCount: BigInt!
|
||||||
transfers: [Transfer!]!
|
transfers (orderBy: Transfer_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Transfer!]!
|
||||||
deposits: [Deposit!]!
|
deposits (orderBy: Deposit_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Deposit!]!
|
||||||
}
|
}
|
||||||
|
|
||||||
type Order {
|
type Order {
|
||||||
@ -1657,7 +1657,7 @@ type Order {
|
|||||||
lendingMarket: LendingMarket!
|
lendingMarket: LendingMarket!
|
||||||
isPreOrder: Boolean!
|
isPreOrder: Boolean!
|
||||||
type: OrderType!
|
type: OrderType!
|
||||||
transactions: [Transaction!]!
|
transactions (orderBy: Transaction_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Transaction!]!
|
||||||
isCircuitBreakerTriggered: Boolean!
|
isCircuitBreakerTriggered: Boolean!
|
||||||
createdAt: BigInt!
|
createdAt: BigInt!
|
||||||
blockNumber: BigInt!
|
blockNumber: BigInt!
|
||||||
@ -1669,10 +1669,10 @@ type LendingMarket {
|
|||||||
currency: Bytes!
|
currency: Bytes!
|
||||||
maturity: BigInt!
|
maturity: BigInt!
|
||||||
isActive: Boolean!
|
isActive: Boolean!
|
||||||
transactions: [Transaction!]!
|
transactions (orderBy: Transaction_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Transaction!]!
|
||||||
orders: [Order!]!
|
orders (orderBy: Order_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Order!]!
|
||||||
volume: BigInt!
|
volume: BigInt!
|
||||||
dailyVolume: [DailyVolume!]!
|
dailyVolume (orderBy: DailyVolume_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [DailyVolume!]!
|
||||||
openingUnitPrice: BigInt!
|
openingUnitPrice: BigInt!
|
||||||
lastLendUnitPrice: BigInt!
|
lastLendUnitPrice: BigInt!
|
||||||
lastBorrowUnitPrice: BigInt!
|
lastBorrowUnitPrice: BigInt!
|
||||||
|
Loading…
Reference in New Issue
Block a user