Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Team Mutations + Team Query #6

Closed
6 tasks done
eveporcello opened this issue Jul 31, 2018 · 0 comments
Closed
6 tasks done

Team Mutations + Team Query #6

eveporcello opened this issue Jul 31, 2018 · 0 comments
Assignees
Labels
api Issues having to do with the GraphQL API

Comments

@eveporcello
Copy link
Collaborator

eveporcello commented Jul 31, 2018

  1. Create a mutation for Creating Teams

To Complete

  • - Write the resolvers
  • - Write test for the mutation
mutation {
  createTeams(count: 2) {
    color
    players {
      name
    }
  }
}
  1. Create a mutation for Destroying Teams

To Complete

  • - Write the resolvers
  • - Write test for the mutation
mutation {
  destroyTeams
}
  1. Create a Query for Team

To Complete

  • - Write the resolvers to fulfill the query
  • - Write test for the mutation
query {
  Team(color: "red") {
    color
    players {
      login
      name
      avatar
    }
  }
}
@eveporcello eveporcello changed the title Team Mutation + Team Query Team Mutations + Team Query Jul 31, 2018
@eveporcello eveporcello added the api Issues having to do with the GraphQL API label Jul 31, 2018
@eveporcello eveporcello added this to the Playground Rehearsal Ready milestone Aug 1, 2018
@eveporcello eveporcello self-assigned this Aug 1, 2018
This was referenced Aug 1, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api Issues having to do with the GraphQL API
Projects
None yet
Development

No branches or pull requests

1 participant