{
	"info": {
		"_postman_id": "0a682144-7ff6-4e87-a567-807a6b12f902",
		"name": "Nipto",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "32318873"
	},
	"item": [
		{
			"name": "Get Activities",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Authorization",
						"value": "{{token}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "graphql",
					"graphql": {
						"query": "{\n    activities {\n        uid\n        date\n        user {\n            uid\n            name\n            email\n        }\n        task {\n            uid\n            group\n            name\n            value\n        }\n    }\n}",
						"variables": ""
					}
				},
				"url": {
					"raw": "https://nipto.app/graphql",
					"protocol": "https",
					"host": ["nipto", "app"],
					"path": ["graphql"]
				}
			},
			"response": []
		},
		{
			"name": "Get Tasks",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Authorization",
						"value": "{{token}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "graphql",
					"graphql": {
						"query": "{\n    tasks {\n        uid\n        group\n        name\n        value\n    }\n}",
						"variables": ""
					}
				},
				"url": {
					"raw": "https://nipto.app/graphql",
					"protocol": "https",
					"host": ["nipto", "app"],
					"path": ["graphql"]
				}
			},
			"response": []
		},
		{
			"name": "Get Users",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Authorization",
						"value": "{{token}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "graphql",
					"graphql": {
						"query": "{\n    users {\n        uid\n        name\n        email\n    }\n}",
						"variables": ""
					}
				},
				"url": {
					"raw": "https://nipto.app/graphql",
					"protocol": "https",
					"host": ["nipto", "app"],
					"path": ["graphql"]
				}
			},
			"response": []
		},
		{
			"name": "Get Weeks",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Authorization",
						"value": "{{token}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "graphql",
					"graphql": {
						"query": "{\n    weeks {\n        uid\n        scores {\n            user {\n                uid\n                name\n                email\n            }\n            score\n            result\n            objective\n        }\n    }\n}",
						"variables": ""
					}
				},
				"url": {
					"raw": "https://nipto.app/graphql",
					"protocol": "https",
					"host": ["nipto", "app"],
					"path": ["graphql"]
				}
			},
			"response": []
		},
		{
			"name": "Create Activity",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Authorization",
						"value": "{{token}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "graphql",
					"graphql": {
						"query": "mutation CreateActivity($done: String!, $doers: [String!]) {\n  createActivity(done: $done, doers: $doers) {\n    uid\n  }\n}",
						"variables": "{\n    \"done\": \"1eZZeVDNpwsZag5OeY9h\",\n    \"doers\": [\"IjKLw2GSVWbmWYFYOyApPgEw6X82\"]\n}"
					}
				},
				"url": {
					"raw": "https://nipto.app/graphql",
					"protocol": "https",
					"host": ["nipto", "app"],
					"path": ["graphql"]
				}
			},
			"response": []
		},
		{
			"name": "Create Reminder",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Authorization",
						"value": "{{token}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "graphql",
					"graphql": {
						"query": "mutation CreateReminder($tasks: [String!]!, $users: [String!]!, $date: Date!, $time: Time) {\n  createReminder(tasks: $tasks, users: $users, date: $date, time: $time) {\n    uid\n    tasks {\n      uid\n      name\n    }\n    users {\n      uid\n      name\n    }\n    date\n    time\n  }\n}",
						"variables": "{\n    \"tasks\": [\"task-uid\"],\n    \"users\": [\"user-uid\"],\n    \"date\": \"2026-03-15T00:00:00.000Z\",\n    \"time\": \"09:00\"\n}"
					}
				},
				"url": {
					"raw": "https://nipto.app/graphql",
					"protocol": "https",
					"host": ["nipto", "app"],
					"path": ["graphql"]
				}
			},
			"response": []
		},
		{
			"name": "Delete Activity",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Authorization",
						"value": "{{token}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "graphql",
					"graphql": {
						"query": "\nmutation DeleteActivity($uid: String!) {\n  deleteActivity(uid: $uid) {\n    uid\n  }\n}",
						"variables": "{\n    \"uid\": \"activity-uid\"\n}"
					}
				},
				"url": {
					"raw": "https://nipto.app/graphql",
					"protocol": "https",
					"host": ["nipto", "app"],
					"path": ["graphql"]
				}
			},
			"response": []
		}
	],
	"variable": [
		{
			"key": "token",
			"value": "your-token"
		}
	]
}
