Skip to content

Commit

Permalink
Make id argument of accounts query required
Browse files Browse the repository at this point in the history
  • Loading branch information
charlie-wasp committed Dec 18, 2018
1 parent 4d629bf commit 942c095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/schema/type_defs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ export const typeDefs = gql`
type Query {
account(id: AccountID!): Account
accounts(id: [AccountID!]): [Account]
accounts(id: [AccountID!]!): [Account]
accountsSignedBy(id: AccountID!, first: Int!): [Account!]
accountTransactions(id: AccountID!, first: Int!, offset: Int): [Transaction]
operations(account: AccountID, filters: OperationsFilter, first: Int!, offset: Int): [IOperation]
Expand Down

0 comments on commit 942c095

Please sign in to comment.