Files
tracker-demo/postman/Tracker.postman_collection.json
2024-10-07 16:53:33 +02:00

80 lines
1.4 KiB
JSON

{
"info": {
"_postman_id": "c1951f60-c409-4437-8353-e57e46efb23e",
"name": "Tracker",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "23599679"
},
"item": [
{
"name": "user_register",
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [],
"body": {
"mode": "graphql",
"graphql": {
"query": "mutation { \r\n \"username\": \"user\",\r\n \"password\": \"test\"\r\n}",
"variables": ""
}
},
"url": {
"raw": "http://localhost:8080/graphql",
"protocol": "http",
"host": [
"localhost"
],
"port": "8080",
"path": [
"graphql"
]
}
},
"response": []
},
{
"name": "test",
"request": {
"auth": {
"type": "basic",
"basic": [
{
"key": "password",
"value": "test",
"type": "string"
},
{
"key": "username",
"value": "user",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "graphql",
"graphql": {
"query": "{ test }",
"variables": ""
}
},
"url": {
"raw": "http://localhost:8080/graphql",
"protocol": "http",
"host": [
"localhost"
],
"port": "8080",
"path": [
"graphql"
]
}
},
"response": []
}
]
}