graphql.postman_collection.json

{
    "info": {
        "_postman_id": "b263bacc-e372-47be-9938-f1abdfb81eec",
        "name": "graphql",
        "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
    },
    "item": [
        {
            "name": "http://localhost:8081/graphql",
            "request": {
                "method": "POST",
                "header": [],
                "body": {
                    "mode": "graphql",
                    "graphql": {
                        "query": "{\n  pets {\n    name\n    type\n    age\n  }\n  animals\n}",
                        "variables": ""
                    },
                    "options": {
                        "raw": {
                            "language": "json"
                        }
                    }
                },
                "url": {
                    "raw": "http://localhost:8081/graphql",
                    "protocol": "http",
                    "host": [
                        "localhost"
                    ],
                    "port": "8081",
                    "path": [
                        "graphql"
                    ]
                }
            },
            "response": []
        },
        {
            "name": "http://localhost:8081/graphql json",
            "request": {
                "method": "POST",
                "header": [],
                "body": {
                    "mode": "raw",
                    "raw": "{\n  \"query\": \"query {pets{name type age}animals}\",\n  \"operationName\": \"\",\n  \"variables\": {}\n}",
                    "options": {
                        "raw": {
                            "language": "json"
                        }
                    }
                },
                "url": {
                    "raw": "http://localhost:8081/graphql",
                    "protocol": "http",
                    "host": [
                        "localhost"
                    ],
                    "port": "8081",
                    "path": [
                        "graphql"
                    ]
                }
            },
            "response": []
        },
        {
            "name": "http://localhost:8081/graphql json mutation",
            "request": {
                "method": "POST",
                "header": [],
                "body": {
                    "mode": "raw",
                    "raw": "{\n  \"query\": \"mutation {savePet(pet: {name: \\\"Covey's dog\\\", age: 3, type: DOG}) {id name age type}}\",\n  \"operationName\": \"\",\n  \"variables\": null\n}\n",
                    "options": {
                        "raw": {
                            "language": "json"
                        }
                    }
                },
                "url": {
                    "raw": "http://localhost:8081/graphql",
                    "protocol": "http",
                    "host": [
                        "localhost"
                    ],
                    "port": "8081",
                    "path": [
                        "graphql"
                    ]
                }
            },
            "response": []
        },
        {
            "name": "http://localhost:8081/graphql json mutation Copy",
            "request": {
                "method": "POST",
                "header": [],
                "body": {
                    "mode": "raw",
                    "raw": "{\n  \"query\": \"mutation {savePet(pet: {name: \\\"Covey's dog\\\", age: 3, type: DOG}) {id name age type}}\",\n  \"operationName\": \"\",\n  \"variables\": null\n}\n",
                    "options": {
                        "raw": {
                            "language": "json"
                        }
                    }
                },
                "url": {
                    "raw": "http://localhost:8081/graphql",
                    "protocol": "http",
                    "host": [
                        "localhost"
                    ],
                    "port": "8081",
                    "path": [
                        "graphql"
                    ]
                }
            },
            "response": []
        }
    ]
}

posted @ 2021-09-14 10:04  tonggc1668  阅读(197)  评论(0编辑  收藏  举报