zoukankan      html  css  js  c++  java
  • 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": "{   pets {     name     type     age   }   animals }",
                            "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": "{   "query": "query {pets{name type age}animals}",   "operationName": "",   "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 mutation",
                "request": {
                    "method": "POST",
                    "header": [],
                    "body": {
                        "mode": "raw",
                        "raw": "{   "query": "mutation {savePet(pet: {name: \"Covey's dog\", age: 3, type: DOG}) {id name age type}}",   "operationName": "",   "variables": null } ",
                        "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": "{   "query": "mutation {savePet(pet: {name: \"Covey's dog\", age: 3, type: DOG}) {id name age type}}",   "operationName": "",   "variables": null } ",
                        "options": {
                            "raw": {
                                "language": "json"
                            }
                        }
                    },
                    "url": {
                        "raw": "http://localhost:8081/graphql",
                        "protocol": "http",
                        "host": [
                            "localhost"
                        ],
                        "port": "8081",
                        "path": [
                            "graphql"
                        ]
                    }
                },
                "response": []
            }
        ]
    }

  • 相关阅读:
    前端学习资源
    CSS样式属性单词之Left
    CSS 解决 a标签去掉下划线 text-decoration: none无效 的解决方案
    CSS二级菜单
    position属性absolute与relative 详解
    CSS行高——line-height
    VS code注释快捷键
    CSS padding margin border属性详解
    block(块级元素)和 inline(内联元素) 的区别
    css(float浮动和clear清除)
  • 原文地址:https://www.cnblogs.com/tonggc1668/p/15266270.html
Copyright © 2011-2022 走看看