- Use the GraphQL Playground to query Eg:
http://localhost:9400/graphql-playground
- For querying a specific Account
- use Account field in the GraphQL query as below
account(accountid: 1) { accountid accountnumber }
- For querying all Accounts
- use Accounts field in the GraphQL query as below
{ accounts(first: 5) { data { accountid accountnumber } } }
- you can also try paginating, as below
{ accounts(first: 2, page: 2) { data { accountid accountnumber created_on last_login } paginatorInfo { total currentPage perPage } } }
-
Notifications
You must be signed in to change notification settings - Fork 0
basavaraj-nanjappa/bankAccounts_php_gql
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Standalone GraphQL App using Lumen/Laravel, Lighthouse
Resources
Stars
Watchers
Forks
Packages 0
No packages published