hi guys, how can we execute multiple queries at th...
# orm-help
k
hi guys, how can we execute multiple queries at the same time and get them into a result?
j
Have you looked at Apollo’s compose function?
a
@Khoa Huynh By using aliases, like:
Copy code
query {
  myUsersQuery: users {
    id
    email
  }
  myProjectsQuery: projects {
    id
    name
  }
}
k
thanks
👍 1