Wrapping a REST API in GraphQL ,Ignite The https://github.com/MedAmineFouzai/Actix_REST_API Project Make Shure That The DataBase Is Correctly Created It Will Bind The Server Localy And Create A Graphql Instance From the REST Endpoint (http://localhost:8080/competition/{id}/standings) Juniper integration for Actix web.
cd Actix_GraphQl_API
cargo run
http://127.0.0.1:8000/graphiql
Query example:
query {
classification(id: "5f8b4839d42642b5f38d78db") {
competition {
id
name
}
standings {
position
team {
teamName
wins
draws
losts
goalScored
goalAcuired
points
}
}
}
}
Result:
{
"data": {
"classification": {
"competition": {
"id": "5f8b4839d42642b5f38d78db",
"name": "UEFA Champions League"
},
"standings": [
{
"position": 1,
"team": {
"teamName": "Manchester United",
"wins": 4,
"draws": 1,
"losts": 1,
"goalScored": 15,
"goalAcuired": 11,
"points": 13
}
},
{
"position": 2,
"team": {
"teamName": "Real Madrid",
"wins": 2,
"draws": 2,
"losts": 2,
"goalScored": 10,
"goalAcuired": 8,
"points": 8
}
},
{
"position": 3,
"team": {
"teamName": "Bayern Munich",
"wins": 2,
"draws": 1,
"losts": 3,
"goalScored": 9,
"goalAcuired": 8,
"points": 7
}
},
{
"position": 4,
"team": {
"teamName": "FC Barcelone",
"wins": 1,
"draws": 2,
"losts": 3,
"goalScored": 5,
"goalAcuired": 12,
"points": 5
}
}
]
}
}
}