Execute Queries within the AWS AppSync Console

nader dabit
Instructornader dabit
Share this video with your friends

Social Share Links

Send Tweet
Published 6 years ago
Updated 5 years ago

In this lesson, we’ll execute queries against the new AWS AppSyncGraphQL API, showing how to query for both a single item and a list of items.

Instructor: [00:02] To begin querying for data, we first need to make sure that there's data available in our database to query against. To go ahead and input the data into our database, we'll go ahead and execute a couple of createTodo mutations.

[00:31] Now that the mutations have been executed, we can click on docs and then query to view the available queries. Here we see two available queries, getTodo, which returns a single to-do, and listTodos, which returns an array of to-dos. The first query we'd like to execute is the listTodos query.

[00:52] ListTodos returns a TodoConnection input. TodoConnection contains an items array and a next token that's a string. For our query, we'll only return the array of items. Each item in the items array is a type of to-do which has a property of id, title, and completed. When we execute this query, we should see listTodos return with an array of items.

[01:41] The next query we'd like to execute is getTodo. getTodo takes in an id as as argument and returns a single to-do. To test this out, we'll create a query called get that will execute the getTodo query, passing in the id of the workout to-do.

[02:14] ListTodos also has a filter property that's useful for doing filtering and searching. We'll test this out by creating a listTodos query with a filter that filters on the title with titles only containing the string "workout."

[02:51] It may be useful to filter our to-dos based on the completed value. To test this out, let's go ahead and execute a mutation to update the completed value of one of our to-dos to true.

[03:19] Now we can update our filter to filter on the completed value equal to true.

egghead
egghead
~ a minute ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today