8000 GitHub - YaniAless/GraphQL-TP
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

YaniAless/GraphQL-TP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GraphQL-TP

Client

Requête cliente pour ajouter un joueur

mutation createPlayer($playerInfos: PlayerInput!) {
  createPlayer(playerInfos: $playerInfos) {
    name
  }
}

Données types pour createPlayer

{
  "playerInfos": {
    "name": "Amelia",
    "attack": 3,
    "defense": 94,
    "teamName": "Blue Team"
  }
}

Requête cliente pour ajouter une équipe

mutation createTeam($teamInfos: TeamInput!) {
  createTeam(teamInfos: $teamInfos) {
    name
  }
}

About

No description, website, or topics provided.

Resources

License

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  
0