Misprint (#37)

This commit is contained in:
frederikhors 2020-02-23 21:33:27 +01:00 committed by GitHub
parent 7763251fb7
commit dfa4caf540
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -143,7 +143,7 @@ What if I told you Super Graph will fetch all this data with a single SQL query
```graphql
query {
products(limit 5, where: { price: { gt: 12 } }) {
products(limit: 5, where: { price: { gt: 12 } }) {
id
name
description
@ -159,7 +159,7 @@ query {
}
}
purchases(
limit 10,
limit: 10,
order_by: { created_at: desc } ,
where: { user_id: { eq: $user_id } }
) {