basic One Piece (famous manga) API that returns the Strawhats crew information, and give you the possibility to create new crews.
Start the server :
go run .
Using GraphQL playground in http://localhost:8080/ (in my case) you can try this Queries and Mutations
- Get all the strawhats crew
query findPirates{
strawhats{
name
image
bounty
crew
id
}
}
Output :
{
"data": {
"strawhats": [
{
"name": "Monkey D. Luffy",
"image": "https://rb.gy/xz0x9h",
"bounty": "1,500,000,000",
"crew": "Strawhats",
"id": "01"
},
{
"name": "Roronoa Zoro",
"image": "https://rb.gy/imkdhx",
"bounty": "320,000,000",
"crew": "Strawhats",
"id": "02"
},
{
"name": "Nami",
"image": "https://rb.gy/dncyia",
"bounty": "66,000,000",
"crew": "Strawhats",
"id": "03"
},
{
"name": "God Usop",
"image": "https://rb.gy/xa68o1",
"bounty": "200,000,000",
"crew": "Strawhats",
"id": "04"
},
{
"name": "Vinsmoke Sanji ",
"image": "https://rb.gy/sofr7o",
"bounty": "330,000,000",
"crew": "Strawhats",
"id": "05"
},
{
"name": "Tony Tony Chopper",
"image": "https://rb.gy/oh2nmv",
"bounty": "100",
"crew": "Strawhats",
"id": "06"
},
{
"name": "Nico Robin",
"image": "https://rb.gy/5puvys",
"bounty": "130,000,000",
"crew": "Strawhats",
"id": "07"
},
{
"name": "Brook",
"image": "https://rb.gy/5kelik",
"bounty": "83,000,000",
"crew": "Strawhats",
"id": "08"
},
{
"name": "Jimbei",
"image": "https://rb.gy/mafbmm",
"bounty": "83,000,000",
"crew": "Strawhats",
"id": "09"
},
{
"name": "Neferutari Bibi",
"image": "https://rb.gy/zddixu",
"bounty": "0",
"crew": "Strawhats",
"id": "11"
}
]
}
}
- Create your crew, adding new pirates
mutation createPirate {
createPirate(input: { name: "Marco", pirateId: "1",bounty:" 1.374.000.000",crew:"Whitebeard crew",image:"null"}) {
name
id
}
}
Output :
{
"data": {
"createPirate": {
"name": "Marco",
"id": "T8674665223082153551",
}
}
}
- Return the created pirates
query findPirates{
pirates{
name
id
bounty
crew
image //optional
}
}
Output :
{
"data": {
"pirates": [
{
"name": "Edward Newgate",
"id": "T5577006791947779410",
"bounty": "5,046,000,000",
"crew": "Whitebeard crew",
"image": null
},
{
"name": "Marco",
"id": "T8674665223082153551",
"bounty": "1.374.000.000",
"crew": "Whitebeard crew",
"image": "null"
}
]
}
}
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again! ❤️
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Matteo Leonesi - Linkedin - [email protected]
Project Link: GraphQL-Go-onepieceAPI