{"info":{"_postman_id":"0c5191c1-9c0c-48e1-b62c-dda6814906a9","name":"Ecodoc.app","description":"<html><head></head><body><h2>Welcome to Ecodoc Graphql API documentation</h2>\n<p>Version: 2023-03-06</p>\n<h3>Platform security</h3>\n<ul>\n<li>Network isolation and access</li>\n<li>Encryption in flight and at rest</li>\n<li>Granular database auditing</li>\n</ul>\n\n<p>Download <a href=\"https://webassets.mongodb.com/_com_assets/cms/MongoDB_Atlas_Security_Controls-v7k3rbhi3p.pdf\">whitepaper with plataform security information</a>.</p>\n<h3>Platform compliance</h3>\n<ul>\n<li>Download <a href=\"https://www.mongodb.com/cloud/trust/compliance/hipaa\">HIPAA</a> information</li>\n<li>Download <a href=\"https://www.mongodb.com/cloud/trust/compliance/gdpr\">GDPR</a> information</li>\n<li>Download <a href=\"https://www.mongodb.com/cloud/trust/compliance/soc\">SOC</a> information</li>\n<li>Download <a href=\"https://www.mongodb.com/cloud/trust/compliance/iso\">ISO/IEC 27001:2013</a> information</li>\n<li>Download <a href=\"https://www.mongodb.com/cloud/trust/compliance/pci-dss\">PCI DSS</a> information</li>\n</ul>\n\n\n<h3>Users &amp; Authentication</h3>\nAuthentication of the Ecodoc has two tokens. The refresh token and the access token.\n\n<p>The refresh token is only used to capture new access token. This token has no validity and should be stored with maximum security.</p>\n<p>Access token is used in all request headers. This token is valid for 15 minutes and is similar to a users session.</p>\n<h3>Date format</h3>\nAll dates in the API use UTC and are strings in the <a href=\"https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations\">ISO 8601 \"combined date and time representation\"</a> format:\n\n<p><strong>2022-06-01T15:50:38Z</strong></p>\n<h3>Limitation</h3>\nThis API can process a maximum of 10 resolvers for a given query or mutation. If an operation specifies more than ten resolvers, the entire operation will fail with the error message \"max number of queries reached\".\n\n\n<h3>The query filters have these operators fields:</h3>\n\n<p><b>gt</b>: Finds documents where the field is greater than the specified value.</p>\n<p><b>gte</b>: Finds documents where the field is greater than or equal to the specified value.</p>\n<p><b>lt</b>: Finds documents where the field is less than the specified value.</p>\n<p><b>lte</b>:\nFinds documents where the field is less than or equal to the specified value.</p>\n<p><b>ne</b>: Finds documents where the field is not equal to the specified value.</p>\n<p><b>in</b>: Finds documents where the field is equal to any value in the specified array. If the field is an Array, this finds all documents where any value in the field array is also included in the specified array.</p>\n<p>Example:\n<code>query: {first_name_in: [\"Tom\", \"Ton\"]}</code></p>\n<p><b>nin</b>: Finds documents where the field is not equal to any value in the specified array. If the field is an Array, this finds all documents where any value in the field array is also in the specified array.</p>\n<p><b>exists</b>: Finds documents where the field is not null.</p>\n<h3>And these logical operators:</h3>\n\n<p><b>AND</b>: Finds documents that match all of the provided QueryInput objects.</p>\n<p>Example:\n<code>\nappointments(query: { AND: [{ duration: 40 }, { status: SCHEDULED }] })\n</code></p>\n<p><b>OR</b>: Finds documents that match any of the provided QueryInput objects.</p>\n<p>Example:\n<code>\nappointments(query: { OR: [{ duration: 40 }, { status: SCHEDULED }] })\n</code></p>\n<h3>Limit and sort</h3>\n\n<p><b>limit</b>: Optional. The maximum number of documents to include in the query result set. If the query matches more than the set limit then it only returns a subset of matched documents.</p>\n<p>If you do not specify a limit argument then the query operation returns all matching documents.</p>\n<p><b>sortBy</b>: Optional. A value that defines a sort order for documents in the query result set. You can sort in ascending and descending order by any root-level field that does not have a type of object or array.</p>\n<p>The sortBy value is a fully-capitalized identifier that combines the field name and the sort direction. For example:</p>\n<p>to sort by title from A to Z you would use TITLE_ASC\nto sort by rating from highest to lowest you would use RATING_DESC\nIf you do not specify a sortBy argument then the query operation does not guarantee the order of documents in the result set.</p>\n<h3>Mutation</h3>\n\n<p>Mutation queries modify document in the data store and returns a value. It can be used to insert, update or delete document. Mutations are defined as a part of the schema.</p>\n<p>One: <code>insertOne<b>Collection</b></code>, <code>updateOne<b>Collection</b></code>\nand <code>deleteOne<b>Collection</b></code>.</p>\n<p>More than 1: <code>insertMany<b>Collections</b> (plural)</code>, <code>updateMany<b>Collections</b> (plural)</code>\nand <code>deleteMany<b>Collections</b> (plural)</code>.</p>\n<h4>Insert a sample document:</h4><pre><code>\nmutation {\n    insertOneAppointment(\n        data: {\n            date_time: \"2021-04-05T07:24:00Z\",\n            duration: 30,\n            customer: {link:\"607ec55e4a5bfc3c507063f7\"},\n            status: SCHEDULED,\n            observation: \"Medical consultation\",\n            _partition: \"607db6054a5bfc3c50a01795\"\n        }\n    ) {\n        _id\n        date_time\n        created_at\n    }\n}\n</code></pre>\n\n<h4>Example more than 1 document:</h4><pre><code>\nmutation {\n    insertManyAppointments(\n        data: [\n            {\n                date_time: \"2021-04-05T07:24:00Z\",\n                duration: 30,\n                customer: {link:\"607ec55e4a5bfc3c507063f7\"},\n                status: SCHEDULED,\n                observation: \"Medical consultation\",\n                _partition: \"607db6054a5bfc3c50a01795\"\n            },\n            {\n                date_time: \"2021-04-06T07:24:00Z\",\n                duration: 45,\n                customer: {link:\"607ec55e4a5bfc3c507063f7\"},\n                status: SCHEDULED,\n                observation: \"Medical consultation 2\",\n                _partition: \"607db6054a5bfc3c50a01795\"\n            },\n        ]\n    ) {\n        insertedIds\n    }\n}\n</code></pre></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"5380649","collectionId":"0c5191c1-9c0c-48e1-b62c-dda6814906a9","publishedId":"TzJuAdad","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"413DF7"},"publishDate":"2021-04-20T16:29:22.000Z"},"item":[{"name":"Authentication: Get refresh token (login and password method)","id":"e7924d4a-83d0-4b83-bed9-413b802bf46f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"username\":\"\",\r\n    \"password\":\"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/auth/providers/local-userpass/login","description":"<p>This endpoint returns the refresh token and first access token using login and password method.</p>\n","urlObject":{"path":["auth","providers","local-userpass","login"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[],"_postman_id":"e7924d4a-83d0-4b83-bed9-413b802bf46f"},{"name":"Authentication: Refresh access token (expire 30 minutes after)","id":"35aff2e0-aa3d-42c7-af11-3764f87da1fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://realm.mongodb.com/api/client/v2.0/auth/session","description":"<p>This endpoint returns new access tokens with your refresh token stored in your application.</p>\n","urlObject":{"protocol":"https","path":["api","client","v2.0","auth","session"],"host":["realm","mongodb","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"35aff2e0-aa3d-42c7-af11-3764f87da1fc"},{"name":"Appointment: List all","id":"d5227639-058f-40af-b757-18728b40d41c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n  appointments {\r\n    _id\r\n    date_time\r\n    duration\r\n     customer {\r\n         _id\r\n         first_name\r\n    }\r\n    status\r\n    observation\r\n    created_at\r\n    modified_at\r\n    _partition\r\n  }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint list all appointments. You can list less properties to reduce latency.</p>\n<p><strong>Status list</strong>: scheduled, no-show, standby, canceled, attended, squeezed-in.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"a23adc95-964c-4a36-b8bf-90c920489b59","name":"Appointment: List all","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n  appointments {\r\n    _id\r\n    date_time\r\n    duration\r\n     customer {\r\n         _id\r\n         first_name\r\n    }\r\n    status\r\n    observation\r\n    created_at\r\n    modified_at\r\n    _partition\r\n  }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0cefdbb37165985d4d2f"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:44:32 GMT"},{"key":"content-length","value":"218"},{"key":"x-envoy-upstream-service-time","value":"930"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"appointments\": [\n            {\n                \"_id\": \"640a0c87dbb37165985d3ab2\",\n                \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n                \"created_at\": null,\n                \"customer\": null,\n                \"date_time\": \"2021-04-05T07:24:00Z\",\n                \"duration\": \"45\",\n                \"modified_at\": null,\n                \"observation\": \"Medical consultation\",\n                \"status\": \"SCHEDULED\"\n            }\n        ]\n    }\n}"}],"_postman_id":"d5227639-058f-40af-b757-18728b40d41c"},{"name":"Appointment: List all with query","id":"55b563eb-f1f4-4788-a666-8126ba8f621b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    appointments (\r\n        query: {\r\n            date_time_gt: \"2021-04-03T00:00:00.000Z\",\r\n            date_time_lte: \"2023-03-30T00:00:00.000Z\",\r\n            duration: \"45\"\r\n        }\r\n    ) {\r\n        _id\r\n        date_time\r\n        duration\r\n        customer {\r\n            _id\r\n            first_name\r\n        }\r\n        status\r\n        observation\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint list all appointments with filters. You can list less properties to reduce latency.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"2bc9a3e8-bf3f-4b8a-99f5-36e3eb0592db","name":"Appointment: List all with query","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    appointments (\r\n        query: {\r\n            date_time_gt: \"2021-04-03T00:00:00.000Z\",\r\n            date_time_lte: \"2023-03-30T00:00:00.000Z\",\r\n            duration: \"45\"\r\n        }\r\n    ) {\r\n        _id\r\n        date_time\r\n        duration\r\n        customer {\r\n            _id\r\n            first_name\r\n        }\r\n        status\r\n        observation\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0ce4fdb5df4b7ce27ccc"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:44:21 GMT"},{"key":"content-length","value":"218"},{"key":"x-envoy-upstream-service-time","value":"693"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"appointments\": [\n            {\n                \"_id\": \"640a0c87dbb37165985d3ab2\",\n                \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n                \"created_at\": null,\n                \"customer\": null,\n                \"date_time\": \"2021-04-05T07:24:00Z\",\n                \"duration\": \"45\",\n                \"modified_at\": null,\n                \"observation\": \"Medical consultation\",\n                \"status\": \"SCHEDULED\"\n            }\n        ]\n    }\n}"}],"_postman_id":"55b563eb-f1f4-4788-a666-8126ba8f621b"},{"name":"Appointment: Insert","id":"c5ea6ce8-6601-4343-b420-c1a953675b49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    insertOneAppointment(\r\n        data: {\r\n            date_time: \"2021-04-05T07:24:00Z\",\r\n            duration: \"30\",\r\n            customer: {\r\n                link: \"6297a5316fe9b9b0505ce58d\"\r\n            },\r\n            status: SCHEDULED,\r\n            observation: \"Medical consultation\",\r\n            _partition: \"640a08e6fdb5df4b7ce1dd0c\"\r\n        }\r\n    ) {\r\n        _id\r\n        date_time\r\n        created_at\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint insert one appointment. To insert more than 1, use insertManyAppointments.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"a330a2c4-e6b8-49e6-b414-e439a91c6a54","name":"Appointment: Insert","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    insertOneAppointment(\r\n        data: {\r\n            date_time: \"2021-04-05T07:24:00Z\",\r\n            duration: \"30\",\r\n            customer: {\r\n                link: \"6297a5316fe9b9b0505ce58d\"\r\n            },\r\n            status: SCHEDULED,\r\n            observation: \"Medical consultation\",\r\n            _partition: \"640a08e6fdb5df4b7ce1dd0c\"\r\n        }\r\n    ) {\r\n        _id\r\n        date_time\r\n        created_at\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0c86dbb37165985d3aa1"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:42:47 GMT"},{"key":"content-length","value":"133"},{"key":"x-envoy-upstream-service-time","value":"698"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"insertOneAppointment\": {\n            \"_id\": \"640a0c87dbb37165985d3ab2\",\n            \"created_at\": null,\n            \"date_time\": \"2021-04-05T07:24:00Z\"\n        }\n    }\n}"}],"_postman_id":"c5ea6ce8-6601-4343-b420-c1a953675b49"},{"name":"Appointment: Update one","id":"bfdd745d-be69-4f67-ba41-a150743d0a18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    updateOneAppointment(\r\n        query: {\r\n            _id: \"640a0c87dbb37165985d3ab2\"\r\n        },\r\n        set: {\r\n            duration: \"45\"\r\n        }\r\n    ) {\r\n        _id\r\n        date_time\r\n        duration\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint update one appointment. To update more than 1, use updateManyAppointments.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"5c38c1bd-47d3-4ba8-9fec-d862e3e93cd2","name":"Appointment: Update one","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    updateOneAppointment(\r\n        query: {\r\n            _id: \"640a0c87dbb37165985d3ab2\"\r\n        },\r\n        set: {\r\n            duration: \"45\"\r\n        }\r\n    ) {\r\n        _id\r\n        date_time\r\n        duration\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0c99fdb5df4b7ce26f4e"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:43:06 GMT"},{"key":"content-length","value":"131"},{"key":"x-envoy-upstream-service-time","value":"929"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"updateOneAppointment\": {\n            \"_id\": \"640a0c87dbb37165985d3ab2\",\n            \"date_time\": \"2021-04-05T07:24:00Z\",\n            \"duration\": \"45\"\n        }\n    }\n}"}],"_postman_id":"bfdd745d-be69-4f67-ba41-a150743d0a18"},{"name":"Appointment: Get one","id":"a121dfef-6ff0-4eec-89ce-16935c787bad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    appointment (\r\n        query: {\r\n            _id: \"640a0c87dbb37165985d3ab2\"\r\n        }\r\n    ) {\r\n        _id\r\n        date_time\r\n        duration\r\n        customer {\r\n            _id\r\n            first_name\r\n        }\r\n        status\r\n        observation\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint get one appointment.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"bc8a3c17-87fb-4231-bf1c-a05bbf41cb49","name":"Appointment: Get one","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    appointment (\r\n        query: {\r\n            _id: \"640a0c87dbb37165985d3ab2\"\r\n        }\r\n    ) {\r\n        _id\r\n        date_time\r\n        duration\r\n        customer {\r\n            _id\r\n            first_name\r\n        }\r\n        status\r\n        observation\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0ca179a5902632d1b117"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:43:14 GMT"},{"key":"content-length","value":"213"},{"key":"x-envoy-upstream-service-time","value":"689"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"appointment\": {\n            \"_id\": \"640a0c87dbb37165985d3ab2\",\n            \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n            \"created_at\": null,\n            \"customer\": null,\n            \"date_time\": \"2021-04-05T07:24:00Z\",\n            \"duration\": \"45\",\n            \"modified_at\": null,\n            \"observation\": \"Medical consultation\",\n            \"status\": \"SCHEDULED\"\n        }\n    }\n}"}],"_postman_id":"a121dfef-6ff0-4eec-89ce-16935c787bad"},{"name":"Customer: List all","id":"d57f4181-b5e0-40eb-a8d9-e1732bfa2d0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    customers {\r\n        _id\r\n        first_name\r\n        last_name\r\n        social_name\r\n        email\r\n        phone\r\n        birthday\r\n        sex\r\n        active\r\n        observation\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint list all customers. You can list less properties to reduce latency.</p>\n<p><strong>Sex list</strong>: male, female, undefined.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"0ee03fbd-2716-4fe7-8997-beeaba187435","name":"Customer: List all","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    customers {\r\n        _id\r\n        first_name\r\n        last_name\r\n        social_name\r\n        email\r\n        phone\r\n        birthday\r\n        sex\r\n        active\r\n        observation\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0c73d10e3aa222cbac98"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:42:29 GMT"},{"key":"content-length","value":"267"},{"key":"x-envoy-upstream-service-time","value":"1853"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"customers\": [\n            {\n                \"_id\": \"640a0c09fdb5df4b7ce25a04\",\n                \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n                \"active\": true,\n                \"birthday\": \"1985-07-06T00:00:00Z\",\n                \"created_at\": null,\n                \"email\": \"godfather@ecodoc.app\",\n                \"first_name\": \"Don Vito\",\n                \"last_name\": \"Corleone\",\n                \"modified_at\": null,\n                \"observation\": \"This is a joke. :P\",\n                \"phone\": \"11 1 11111111\",\n                \"sex\": \"MALE\",\n                \"social_name\": \"DC\"\n            }\n        ]\n    }\n}"}],"_postman_id":"d57f4181-b5e0-40eb-a8d9-e1732bfa2d0e"},{"name":"Customer: List all with query","id":"cef4b2ec-2e65-4622-9dc2-0cf66ad6de30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    customers (\r\n        query: {\r\n            first_name_in: [\"vito\", \"Vitto\", \"Don Vito\"],\r\n            last_name_in: [\"Corleone\", \"corleone\", \"Corleonne\"]\r\n        }\r\n    ) {\r\n        _id\r\n        first_name\r\n        last_name\r\n        social_name\r\n        email\r\n        phone\r\n        birthday\r\n        sex\r\n        active\r\n        observation\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint list all customers with filters. You can list less properties to reduce latency.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"5b530c8d-5077-4d58-86fa-cdc6cec0b682","name":"Customer: List all with query","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    customers (\r\n        query: {\r\n            first_name_in: [\"vito\", \"Vitto\", \"Don Vito\"],\r\n            last_name_in: [\"Corleone\", \"corleone\", \"Corleonne\"]\r\n        }\r\n    ) {\r\n        _id\r\n        first_name\r\n        last_name\r\n        social_name\r\n        email\r\n        phone\r\n        birthday\r\n        sex\r\n        active\r\n        observation\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0c68dbb37165985d361e"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:42:17 GMT"},{"key":"content-length","value":"267"},{"key":"x-envoy-upstream-service-time","value":"577"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"customers\": [\n            {\n                \"_id\": \"640a0c09fdb5df4b7ce25a04\",\n                \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n                \"active\": true,\n                \"birthday\": \"1985-07-06T00:00:00Z\",\n                \"created_at\": null,\n                \"email\": \"godfather@ecodoc.app\",\n                \"first_name\": \"Don Vito\",\n                \"last_name\": \"Corleone\",\n                \"modified_at\": null,\n                \"observation\": \"This is a joke. :P\",\n                \"phone\": \"11 1 11111111\",\n                \"sex\": \"MALE\",\n                \"social_name\": \"DC\"\n            }\n        ]\n    }\n}"}],"_postman_id":"cef4b2ec-2e65-4622-9dc2-0cf66ad6de30"},{"name":"Customer: Insert one","id":"ffcb55f3-3fe7-489b-8c90-4abdc56db359","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    insertOneCustomer (\r\n        data: {\r\n            first_name: \"Don Vito\",\r\n            last_name: \"Corleone\",\r\n            social_name: \"The Godfather\",\r\n            email: \"godfather@ecodoc.app\",\r\n            phone: \"11 1 11111111\",\r\n            birthday: \"1985-07-06T00:00:00.000Z\",\r\n            sex: MALE,\r\n            active: true,\r\n            observation: \"This is a joke. :P\",\r\n            _partition: \"640a08e6fdb5df4b7ce1dd0c\"\r\n        }\r\n    ) {\r\n        _id,\r\n        first_name\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint insert one customer. To insert more than 1, use insertManyCustomers.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"a7803dc3-210a-4c27-8b08-4c8996d6ab05","name":"Customer: Insert one","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    insertOneCustomer (\r\n        data: {\r\n            first_name: \"Don Vito\",\r\n            last_name: \"Corleone\",\r\n            social_name: \"The Godfather\",\r\n            email: \"godfather@ecodoc.app\",\r\n            phone: \"11 1 11111111\",\r\n            birthday: \"1985-07-06T00:00:00.000Z\",\r\n            sex: MALE,\r\n            active: true,\r\n            observation: \"This is a joke. :P\",\r\n            _partition: \"640a08e6fdb5df4b7ce1dd0c\"\r\n        }\r\n    ) {\r\n        _id,\r\n        first_name\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0c09fdb5df4b7ce259f5"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:40:41 GMT"},{"key":"content-length","value":"110"},{"key":"x-envoy-upstream-service-time","value":"816"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"insertOneCustomer\": {\n            \"_id\": \"640a0c09fdb5df4b7ce25a04\",\n            \"first_name\": \"Don Vito\"\n        }\n    }\n}"}],"_postman_id":"ffcb55f3-3fe7-489b-8c90-4abdc56db359"},{"name":"Customer: Update one","id":"6d7dca94-e6ab-4537-9538-f8a4f169cc88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    updateOneCustomer (\r\n        query: {\r\n            _id:\"640a0c09fdb5df4b7ce25a04\"\r\n        },\r\n        set: {\r\n            social_name: \"DC\"\r\n        }\r\n    ) {\r\n        _id,\r\n        first_name\r\n        social_name\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint update one customer. To update more than 1, use updateManyCustomers.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"79c63079-ed39-4d22-b6b7-2d224c21a898","name":"Customer: Update one","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    updateOneCustomer (\r\n        query: {\r\n            _id:\"640a0c09fdb5df4b7ce25a04\"\r\n        },\r\n        set: {\r\n            social_name: \"DC\"\r\n        }\r\n    ) {\r\n        _id,\r\n        first_name\r\n        social_name\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0c2f79a5902632d1a019"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:41:20 GMT"},{"key":"content-length","value":"120"},{"key":"x-envoy-upstream-service-time","value":"926"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"updateOneCustomer\": {\n            \"_id\": \"640a0c09fdb5df4b7ce25a04\",\n            \"first_name\": \"Don Vito\",\n            \"social_name\": \"DC\"\n        }\n    }\n}"}],"_postman_id":"6d7dca94-e6ab-4537-9538-f8a4f169cc88"},{"name":"Customer: Get one","id":"d4cad6f5-9fbe-42be-bfb1-6a35ffe0e7e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    customer (\r\n        query: {\r\n            _id: \"640a0c09fdb5df4b7ce25a04\"\r\n        }\r\n    ) {\r\n        _id\r\n        first_name\r\n        last_name\r\n        social_name\r\n        email\r\n        phone\r\n        birthday\r\n        sex\r\n        active\r\n        observation\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint get one customer.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"5047e789-992a-426d-987c-cede3b240748","name":"Customer: Get one","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    customer (\r\n        query: {\r\n            _id: \"640a0c09fdb5df4b7ce25a04\"\r\n        }\r\n    ) {\r\n        _id\r\n        first_name\r\n        last_name\r\n        social_name\r\n        email\r\n        phone\r\n        birthday\r\n        sex\r\n        active\r\n        observation\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0c3ddbb37165985d2f8c"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:41:33 GMT"},{"key":"content-length","value":"263"},{"key":"x-envoy-upstream-service-time","value":"578"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"customer\": {\n            \"_id\": \"640a0c09fdb5df4b7ce25a04\",\n            \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n            \"active\": true,\n            \"birthday\": \"1985-07-06T00:00:00Z\",\n            \"created_at\": null,\n            \"email\": \"godfather@ecodoc.app\",\n            \"first_name\": \"Don Vito\",\n            \"last_name\": \"Corleone\",\n            \"modified_at\": null,\n            \"observation\": \"This is a joke. :P\",\n            \"phone\": \"11 1 11111111\",\n            \"sex\": \"MALE\",\n            \"social_name\": \"DC\"\n        }\n    }\n}"}],"_postman_id":"d4cad6f5-9fbe-42be-bfb1-6a35ffe0e7e4"},{"name":"Configuration: List all","id":"39d35da6-6086-4fce-9363-1cab8b7b4fcd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    configurations {\r\n        _id\r\n        first_name\r\n        last_name\r\n        social_name\r\n        email\r\n        timezone\r\n        language\r\n        subscription {\r\n            id\r\n            name\r\n        }\r\n        colleagues\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint list all configurations. You can list less properties to reduce latency.</p>\n<p><strong>Language list</strong>: zh-Hans, zh-Hant, en, fr, de, hi, it, ja, ko, ru, es, ar, pt.</p>\n<p><strong>Timezone list</strong>: Africa/Abidjan, Africa/Accra, Africa/Algiers, Africa/Bissau, Africa/Cairo, Africa/Casablanca, Africa/Ceuta, Africa/El_Aaiun, Africa/Johannesburg, Africa/Juba, Africa/Khartoum, Africa/Lagos, Africa/Maputo, Africa/Monrovia, Africa/Nairobi, Africa/Ndjamena, Africa/Sao_Tome, Africa/Tripoli, Africa/Tunis, Africa/Windhoek, America/Adak, America/Anchorage, America/Araguaina, America/Argentina/Buenos_Aires, America/Argentina/Catamarca, America/Argentina/Cordoba, America/Argentina/Jujuy, America/Argentina/La_Rioja, America/Argentina/Mendoza, America/Argentina/Rio_Gallegos, America/Argentina/Salta, America/Argentina/San_Juan, America/Argentina/San_Luis, America/Argentina/Tucuman, America/Argentina/Ushuaia, America/Asuncion, America/Atikokan, America/Bahia, America/Bahia_Banderas, America/Barbados, America/Belem, America/Belize, America/Blanc-Sablon, America/Boa_Vista, America/Bogota, America/Boise, America/Cambridge_Bay, America/Campo_Grande, America/Cancun, America/Caracas, America/Cayenne, America/Chicago, America/Chihuahua, America/Costa_Rica, America/Creston, America/Cuiaba, America/Curacao, America/Danmarkshavn, America/Dawson, America/Dawson_Creek, America/Denver, America/Detroit, America/Edmonton, America/Eirunepe, America/El_Salvador, America/Fort_Nelson, America/Fortaleza, America/Glace_Bay, America/Godthab, America/Goose_Bay, America/Grand_Turk, America/Guatemala, America/Guayaquil, America/Guyana, America/Halifax, America/Havana, America/Hermosillo, America/Indiana/Indianapolis, America/Indiana/Knox, America/Indiana/Marengo, America/Indiana/Petersburg, America/Indiana/Tell_City, America/Indiana/Vevay, America/Indiana/Vincennes, America/Indiana/Winamac, America/Inuvik, America/Iqaluit, America/Jamaica, America/Juneau, America/Kentucky/Louisville, America/Kentucky/Monticello, America/La_Paz, America/Lima, America/Los_Angeles, America/Maceio, America/Managua, America/Manaus, America/Martinique, America/Matamoros, America/Mazatlan, America/Menominee, America/Merida, America/Metlakatla, America/Mexico_City, America/Miquelon, America/Moncton, America/Monterrey, America/Montevideo, America/Nassau, America/New_York, America/Nipigon, America/Nome, America/Noronha, America/North_Dakota/Beulah, America/North_Dakota/Center, America/North_Dakota/New_Salem, America/Ojinaga, America/Panama, America/Pangnirtung, America/Paramaribo, America/Phoenix, America/Port-au-Prince, America/Port_of_Spain, America/Porto_Velho, America/Puerto_Rico, America/Punta_Arenas, America/Rainy_River, America/Rankin_Inlet, America/Recife, America/Regina, America/Resolute, America/Rio_Branco, America/Santarem, America/Santiago, America/Santo_Domingo, America/Sao_Paulo, America/Scoresbysund, America/Sitka, America/St_Johns, America/Swift_Current, America/Tegucigalpa, America/Thule, America/Thunder_Bay, America/Tijuana, America/Toronto, America/Vancouver, America/Whitehorse, America/Winnipeg, America/Yakutat, America/Yellowknife, Antarctica/Casey, Antarctica/Davis, Antarctica/DumontDUrville, Antarctica/Macquarie, Antarctica/Mawson, Antarctica/Palmer, Antarctica/Rothera, Antarctica/Syowa, Antarctica/Troll, Antarctica/Vostok, Asia/Almaty, Asia/Amman, Asia/Anadyr, Asia/Aqtau, Asia/Aqtobe, Asia/Ashgabat, Asia/Atyrau, Asia/Baghdad, Asia/Baku, Asia/Bangkok, Asia/Barnaul, Asia/Beirut, Asia/Bishkek, Asia/Brunei, Asia/Chita, Asia/Choibalsan, Asia/Colombo, Asia/Damascus, Asia/Dhaka, Asia/Dili, Asia/Dubai, Asia/Dushanbe, Asia/Famagusta, Asia/Gaza, Asia/Hebron, Asia/Ho_Chi_Minh, Asia/Hong_Kong, Asia/Hovd, Asia/Irkutsk, Asia/Jakarta, Asia/Jayapura, Asia/Jerusalem, Asia/Kabul, Asia/Kamchatka, Asia/Karachi, Asia/Kathmandu, Asia/Khandyga, Asia/Kolkata, Asia/Krasnoyarsk, Asia/Kuala_Lumpur, Asia/Kuching, Asia/Macau, Asia/Magadan, Asia/Makassar, Asia/Manila, Asia/Nicosia, Asia/Novokuznetsk, Asia/Novosibirsk, Asia/Omsk, Asia/Oral, Asia/Pontianak, Asia/Pyongyang, Asia/Qatar, Asia/Qostanay, Asia/Qyzylorda, Asia/Riyadh, Asia/Sakhalin, Asia/Samarkand, Asia/Seoul, Asia/Shanghai, Asia/Singapore, Asia/Srednekolymsk, Asia/Taipei, Asia/Tashkent, Asia/Tbilisi, Asia/Tehran, Asia/Thimphu, Asia/Tokyo, Asia/Tomsk, Asia/Ulaanbaatar, Asia/Urumqi, Asia/Ust-Nera, Asia/Vladivostok, Asia/Yakutsk, Asia/Yangon, Asia/Yekaterinburg, Asia/Yerevan, Atlantic/Azores, Atlantic/Bermuda, Atlantic/Canary, Atlantic/Cape_Verde, Atlantic/Faroe, Atlantic/Madeira, Atlantic/Reykjavik, Atlantic/South_Georgia, Atlantic/Stanley, Australia/Adelaide, Australia/Brisbane, Australia/Broken_Hill, Australia/Currie, Australia/Darwin, Australia/Eucla, Australia/Hobart, Australia/Lindeman, Australia/Lord_Howe, Australia/Melbourne, Australia/Perth, Australia/Sydney, Europe/Amsterdam, Europe/Andorra, Europe/Astrakhan, Europe/Athens, Europe/Belgrade, Europe/Berlin, Europe/Brussels, Europe/Bucharest, Europe/Budapest, Europe/Chisinau, Europe/Copenhagen, Europe/Dublin, Europe/Gibraltar, Europe/Helsinki, Europe/Istanbul, Europe/Kaliningrad, Europe/Kiev, Europe/Kirov, Europe/Lisbon, Europe/London, Europe/Luxembourg, Europe/Madrid, Europe/Malta, Europe/Minsk, Europe/Monaco, Europe/Moscow, Europe/Oslo, Europe/Paris, Europe/Prague, Europe/Riga, Europe/Rome, Europe/Samara, Europe/Saratov, Europe/Simferopol, Europe/Sofia, Europe/Stockholm, Europe/Tallinn, Europe/Tirane, Europe/Ulyanovsk, Europe/Uzhgorod, Europe/Vienna, Europe/Vilnius, Europe/Volgograd, Europe/Warsaw, Europe/Zaporozhye, Europe/Zurich, Indian/Chagos, Indian/Christmas, Indian/Cocos, Indian/Kerguelen, Indian/Mahe, Indian/Maldives, Indian/Mauritius, Indian/Reunion, Pacific/Apia, Pacific/Auckland, Pacific/Bougainville, Pacific/Chatham, Pacific/Chuuk, Pacific/Easter, Pacific/Efate, Pacific/Enderbury, Pacific/Fakaofo, Pacific/Fiji, Pacific/Funafuti, Pacific/Galapagos, Pacific/Gambier, Pacific/Guadalcanal, Pacific/Guam, Pacific/Honolulu, Pacific/Kiritimati, Pacific/Kosrae, Pacific/Kwajalein, Pacific/Majuro, Pacific/Marquesas, Pacific/Nauru, Pacific/Niue, Pacific/Norfolk, Pacific/Noumea, Pacific/Pago_Pago, Pacific/Palau, Pacific/Pitcairn, Pacific/Pohnpei, Pacific/Port_Moresby, Pacific/Rarotonga, Pacific/Tahiti, Pacific/Tarawa, Pacific/Tongatapu, Pacific/Wake, Pacific/Wallis.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"97065474-643e-4037-a9b3-5df2a77ae98a","name":"Configuration: List all","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    configurations {\r\n        _id\r\n        first_name\r\n        last_name\r\n        social_name\r\n        email\r\n        timezone\r\n        language\r\n        subscription {\r\n            id\r\n            name\r\n        }\r\n        colleagues\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0bf479a5902632d19760"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:40:21 GMT"},{"key":"content-length","value":"365"},{"key":"x-envoy-upstream-service-time","value":"1835"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"configurations\": [\n            {\n                \"_id\": \"640a08e6fdb5df4b7ce1dd0c\",\n                \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n                \"colleagues\": [],\n                \"created_at\": \"2023-03-09T16:27:18.893Z\",\n                \"email\": \"heltonmarinho@ninsaude.com\",\n                \"first_name\": \"Haoyu\",\n                \"language\": \"PT\",\n                \"last_name\": \"Jie\",\n                \"modified_at\": \"2023-03-09T16:27:18.893Z\",\n                \"social_name\": \"\",\n                \"subscription\": [\n                    {\n                        \"id\": \"teste\",\n                        \"name\": \"teste\"\n                    }\n                ],\n                \"timezone\": \"AMERICA_PARAMARIBO\"\n            },\n            {\n                \"_id\": \"640a0b93dbb37165985d15bb\",\n                \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n                \"colleagues\": null,\n                \"created_at\": null,\n                \"email\": \"godfather@ecodoc.app\",\n                \"first_name\": \"Don Vito\",\n                \"language\": \"EN\",\n                \"last_name\": \"Corleone\",\n                \"modified_at\": null,\n                \"social_name\": \"Godfather\",\n                \"subscription\": null,\n                \"timezone\": \"AMERICA_SAO_PAULO\"\n            }\n        ]\n    }\n}"}],"_postman_id":"39d35da6-6086-4fce-9363-1cab8b7b4fcd"},{"name":"Configuration: List all with query","id":"5cf462f7-a815-4d21-9054-9581ace28ec7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    configurations (\r\n        query: {\r\n            first_name_in: [\"Vito\", \"vito\", \"Vitto\", \"Don Vito\"],\r\n            last_name_in: [\"Corleone\", \"corleone\", \"Corleonne\"]\r\n        }\r\n    ) {\r\n        _id\r\n        first_name\r\n        last_name\r\n        social_name\r\n        email\r\n        timezone\r\n        language\r\n        subscription {\r\n            id\r\n            name\r\n        }\r\n        colleagues\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint list all configurations with filters. You can list less properties to reduce latency.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"6c124bc2-419e-4e6d-b6c7-e1d6cd31efd2","name":"Configuration: List all with query","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    configurations (\r\n        query: {\r\n            first_name_in: [\"Vito\", \"vito\", \"Vitto\", \"Don Vito\"],\r\n            last_name_in: [\"Corleone\", \"corleone\", \"Corleonne\"]\r\n        }\r\n    ) {\r\n        _id\r\n        first_name\r\n        last_name\r\n        social_name\r\n        email\r\n        timezone\r\n        language\r\n        subscription {\r\n            id\r\n            name\r\n        }\r\n        colleagues\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0be8d10e3aa222cb9816"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:40:09 GMT"},{"key":"content-length","value":"254"},{"key":"x-envoy-upstream-service-time","value":"1284"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"configurations\": [\n            {\n                \"_id\": \"640a0b93dbb37165985d15bb\",\n                \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n                \"colleagues\": null,\n                \"created_at\": null,\n                \"email\": \"godfather@ecodoc.app\",\n                \"first_name\": \"Don Vito\",\n                \"language\": \"EN\",\n                \"last_name\": \"Corleone\",\n                \"modified_at\": null,\n                \"social_name\": \"Godfather\",\n                \"subscription\": null,\n                \"timezone\": \"AMERICA_SAO_PAULO\"\n            }\n        ]\n    }\n}"}],"_postman_id":"5cf462f7-a815-4d21-9054-9581ace28ec7"},{"name":"Configuration: Insert one","id":"2de0f275-65dc-45b6-9e6b-3c45aeea2df6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    insertOneConfiguration (\r\n        data: {\r\n            first_name: \"Don Vito\",\r\n            last_name: \"Corleone\",\r\n            social_name: \"The Godfather\",\r\n            email: \"godfather@ecodoc.app\",\r\n            timezone: AMERICA_SAO_PAULO,\r\n            language: EN,\r\n            _partition: \"6297a3b69b1fb26e2fca4a0d\"\r\n        }\r\n    ) {\r\n        _id,\r\n        first_name\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint insert one configuration. To insert more than 1, use insertManyConfigurations.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"a1d460ad-6a40-4b23-ab65-e38130b650e6","name":"Configuration: Insert one","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    insertOneConfiguration (\r\n        data: {\r\n            first_name: \"Don Vito\",\r\n            last_name: \"Corleone\",\r\n            social_name: \"The Godfather\",\r\n            email: \"godfather@ecodoc.app\",\r\n            timezone: AMERICA_SAO_PAULO,\r\n            language: EN,\r\n            _partition: \"640a08e6fdb5df4b7ce1dd0c\"\r\n        }\r\n    ) {\r\n        _id,\r\n        first_name\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0b92dbb37165985d15ad"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:38:43 GMT"},{"key":"content-length","value":"114"},{"key":"x-envoy-upstream-service-time","value":"703"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"insertOneConfiguration\": {\n            \"_id\": \"640a0b93dbb37165985d15bb\",\n            \"first_name\": \"Don Vito\"\n        }\n    }\n}"}],"_postman_id":"2de0f275-65dc-45b6-9e6b-3c45aeea2df6"},{"name":"Configuration: Update one","id":"6d0d08c3-2360-4e77-9fd5-2f5f5351c269","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    updateOneConfiguration (\r\n        query: {\r\n            _id: \"6297a3b69b1fb26e2fca4a0d\"\r\n        },\r\n        set: {\r\n            social_name: \"Godfather\"\r\n        }\r\n    ) {\r\n        _id,\r\n        first_name\r\n        social_name\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint update one configuration. To update more than 1, use updateManyConfigurations.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"bea82f4e-90f5-4393-a3dd-23e7cf780a6f","name":"Configuration: Update one","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    updateOneConfiguration (\r\n        query: {\r\n            _id: \"640a0b93dbb37165985d15bb\"\r\n        },\r\n        set: {\r\n            social_name: \"Godfather\"\r\n        }\r\n    ) {\r\n        _id,\r\n        first_name\r\n        social_name\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0ba5fdb5df4b7ce24a6d"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:39:01 GMT"},{"key":"content-length","value":"129"},{"key":"x-envoy-upstream-service-time","value":"927"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"updateOneConfiguration\": {\n            \"_id\": \"640a0b93dbb37165985d15bb\",\n            \"first_name\": \"Don Vito\",\n            \"social_name\": \"Godfather\"\n        }\n    }\n}"}],"_postman_id":"6d0d08c3-2360-4e77-9fd5-2f5f5351c269"},{"name":"Configuration: Get one","id":"76a11afc-f79e-4817-8991-dcaed1d3435a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    configuration (\r\n        query: {\r\n            _id: \"6297a3b69b1fb26e2fca4a0d\"\r\n        }\r\n    ) {\r\n        _id\r\n        first_name\r\n        last_name\r\n        social_name\r\n        email\r\n        timezone\r\n        language\r\n        subscription {\r\n            id\r\n            name\r\n        }\r\n        colleagues\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint get one configuration.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"fc277e23-a581-4034-8dd0-3c6ae9b0eb1f","name":"Configuration: Get one","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    configuration (\r\n        query: {\r\n            _id: \"640a0b93dbb37165985d15bb\"\r\n        }\r\n    ) {\r\n        _id\r\n        first_name\r\n        last_name\r\n        social_name\r\n        email\r\n        timezone\r\n        language\r\n        subscription {\r\n            id\r\n            name\r\n        }\r\n        colleagues\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0baf79a5902632d18c59"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:39:13 GMT"},{"key":"content-length","value":"249"},{"key":"x-envoy-upstream-service-time","value":"1275"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"configuration\": {\n            \"_id\": \"640a0b93dbb37165985d15bb\",\n            \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n            \"colleagues\": null,\n            \"created_at\": null,\n            \"email\": \"godfather@ecodoc.app\",\n            \"first_name\": \"Don Vito\",\n            \"language\": \"EN\",\n            \"last_name\": \"Corleone\",\n            \"modified_at\": null,\n            \"social_name\": \"Godfather\",\n            \"subscription\": null,\n            \"timezone\": \"AMERICA_SAO_PAULO\"\n        }\n    }\n}"}],"_postman_id":"76a11afc-f79e-4817-8991-dcaed1d3435a"},{"name":"Text suggestion: List all","id":"aabef38f-5fb5-48df-aef8-89fa2f6445d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    text_suggestions {\r\n        _id\r\n        from\r\n        to\r\n        counter\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint list all text suggestions. You can list less properties to reduce latency.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"136362bc-84e1-4799-9c58-1bf417eaeb07","name":"Text suggestion: List all","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    text_suggestions {\r\n        _id\r\n        from\r\n        to\r\n        counter\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0d58d10e3aa222cbd451"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:46:17 GMT"},{"key":"content-length","value":"201"},{"key":"x-envoy-upstream-service-time","value":"582"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"text_suggestions\": [\n            {\n                \"_id\": \"640a0d00d10e3aa222cbc49d\",\n                \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n                \"counter\": \"1\",\n                \"from\": \"misdiagnsis\",\n                \"to\": \"misdiagnosis\"\n            },\n            {\n                \"_id\": \"640a0d1679a5902632d1c526\",\n                \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n                \"counter\": \"2\",\n                \"from\": \"prescripton\",\n                \"to\": \"prescription\"\n            },\n            {\n                \"_id\": \"640a0d1679a5902632d1c527\",\n                \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n                \"counter\": \"1\",\n                \"from\": \"medicationo\",\n                \"to\": \"medication\"\n            }\n        ]\n    }\n}"}],"_postman_id":"aabef38f-5fb5-48df-aef8-89fa2f6445d0"},{"name":"Text suggestion: List all with query","id":"5dba6e8b-f461-44fa-bffd-6718a6826140","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    text_suggestions (\r\n        query: {\r\n            from_in: [\"medicationo\", \"medicatio\", \"medicatino\"]\r\n            to_in: [\"medication\"]\r\n        }\r\n    ) {\r\n        _id\r\n        from\r\n        to\r\n        counter\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint list all text suggestions with filters. You can list less properties to reduce latency.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"7620845b-383c-4f44-97c0-1ccd117f803c","name":"Text suggestion: List all with query","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    text_suggestions (\r\n        query: {\r\n            from_in: [\"medicationo\", \"medicatio\", \"medicatino\"]\r\n            to_in: [\"medication\"]\r\n        }\r\n    ) {\r\n        _id\r\n        from\r\n        to\r\n        counter\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0e0ed10e3aa222cbf314"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:49:18 GMT"},{"key":"content-length","value":"146"},{"key":"x-envoy-upstream-service-time","value":"582"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"text_suggestions\": [\n            {\n                \"_id\": \"640a0d1679a5902632d1c527\",\n                \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n                \"counter\": \"1\",\n                \"from\": \"medicationo\",\n                \"to\": \"medication\"\n            }\n        ]\n    }\n}"}],"_postman_id":"5dba6e8b-f461-44fa-bffd-6718a6826140"},{"name":"Text suggestion: Insert one","id":"2f9f5b8e-010b-4020-b54d-ab6060edbb5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    insertOneText_suggestion (\r\n        data: {\r\n            from: \"misdiagnsis\"\r\n            to: \"misdiagnosis\"\r\n            counter: \"1\"\r\n            _partition: \"640a08e6fdb5df4b7ce1dd0c\"\r\n        }\r\n    ) {\r\n        _id,\r\n        to\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint insert one text suggestion. To insert more than 1, use insertManyText_suggestions.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"a8028079-a9e5-456e-b5a7-7cdffb67e60e","name":"Text suggestion: Insert one","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    insertOneText_suggestion (\r\n        data: {\r\n            from: \"misdiagnsis\"\r\n            to: \"misdiagnosis\"\r\n            counter: \"1\"\r\n            _partition: \"640a08e6fdb5df4b7ce1dd0c\"\r\n        }\r\n    ) {\r\n        _id,\r\n        to\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0cffd10e3aa222cbc47e"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:44:48 GMT"},{"key":"content-length","value":"108"},{"key":"x-envoy-upstream-service-time","value":"846"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"insertOneText_suggestion\": {\n            \"_id\": \"640a0d00d10e3aa222cbc49d\",\n            \"to\": \"misdiagnosis\"\n        }\n    }\n}"}],"_postman_id":"2f9f5b8e-010b-4020-b54d-ab6060edbb5b"},{"name":"Text suggestion: Insert many","id":"6a1b8c99-2aa7-48a8-8600-17db94ee329a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    insertManyText_suggestions (\r\n        data: [\r\n            {\r\n                from: \"prescripton\"\r\n                to: \"prescription\"\r\n                counter: \"1\"\r\n                _partition: \"640a08e6fdb5df4b7ce1dd0c\"\r\n            },\r\n            {\r\n                from: \"medicationo\"\r\n                to: \"medication\"\r\n                counter: \"1\"\r\n                _partition: \"640a08e6fdb5df4b7ce1dd0c\"\r\n            }\r\n        ]\r\n    ) {\r\n        insertedIds\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint insert many text suggestion.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"8aa86a93-8f21-4c22-b944-7a2593a13686","name":"Text suggestion: Insert many","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    insertManyText_suggestions (\r\n        data: [\r\n            {\r\n                from: \"prescripton\"\r\n                to: \"prescription\"\r\n                counter: \"1\"\r\n                _partition: \"640a08e6fdb5df4b7ce1dd0c\"\r\n            },\r\n            {\r\n                from: \"medicationo\"\r\n                to: \"medication\"\r\n                counter: \"1\"\r\n                _partition: \"640a08e6fdb5df4b7ce1dd0c\"\r\n            }\r\n        ]\r\n    ) {\r\n        insertedIds\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0d1579a5902632d1c51e"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:45:10 GMT"},{"key":"content-length","value":"105"},{"key":"x-envoy-upstream-service-time","value":"702"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"insertManyText_suggestions\": {\n            \"insertedIds\": [\n                \"640a0d1679a5902632d1c526\",\n                \"640a0d1679a5902632d1c527\"\n            ]\n        }\n    }\n}"}],"_postman_id":"6a1b8c99-2aa7-48a8-8600-17db94ee329a"},{"name":"Text suggestion: Update one","id":"842aa966-bb69-4337-881d-17f1f19f972b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    updateOneText_suggestion (\r\n        query: {\r\n            _id: \"640a0d1679a5902632d1c526\"\r\n        },\r\n        set: {\r\n            counter: \"2\"\r\n        }\r\n    ) {\r\n        _id,\r\n        to\r\n        counter\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint update one text suggestion. To update more than 1, use updateManyText_suggestions.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"91280ea7-e4a3-4712-b9d2-6c9bed249d82","name":"Text suggestion: Update one","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    updateOneText_suggestion (\r\n        query: {\r\n            _id: \"640a0d1679a5902632d1c526\"\r\n        },\r\n        set: {\r\n            counter: \"2\"\r\n        }\r\n    ) {\r\n        _id,\r\n        to\r\n        counter\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0d2efdb5df4b7ce289d1"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:45:34 GMT"},{"key":"content-length","value":"119"},{"key":"x-envoy-upstream-service-time","value":"929"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"updateOneText_suggestion\": {\n            \"_id\": \"640a0d1679a5902632d1c526\",\n            \"counter\": \"2\",\n            \"to\": \"prescription\"\n        }\n    }\n}"}],"_postman_id":"842aa966-bb69-4337-881d-17f1f19f972b"},{"name":"Text suggestion: Get one","id":"1d1a9f88-dc65-4db3-ba81-68ab17790f87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    text_suggestion (\r\n        query: {\r\n            _id: \"640a0d1679a5902632d1c526\"\r\n        }\r\n    ) {\r\n        _id\r\n        from\r\n        to\r\n        counter\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint get one text suggestion.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"c5870f8e-bfd5-410d-9e7c-61a4d5469b9e","name":"Text suggestion: Get one","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    text_suggestion (\r\n        query: {\r\n            _id: \"640a0d1679a5902632d1c526\"\r\n        }\r\n    ) {\r\n        _id\r\n        from\r\n        to\r\n        counter\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0d44fdb5df4b7ce28e1f"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:45:56 GMT"},{"key":"content-length","value":"142"},{"key":"x-envoy-upstream-service-time","value":"576"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"text_suggestion\": {\n            \"_id\": \"640a0d1679a5902632d1c526\",\n            \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n            \"counter\": \"2\",\n            \"from\": \"prescripton\",\n            \"to\": \"prescription\"\n        }\n    }\n}"}],"_postman_id":"1d1a9f88-dc65-4db3-ba81-68ab17790f87"},{"name":"Record: List all","id":"90ce64cb-0050-4a73-ad81-a166259e13b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    records {\r\n        _id\r\n        date_time\r\n        customer {\r\n            _id\r\n            first_name\r\n        }\r\n        title\r\n        source\r\n        tags\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint list all customer records. You can list less properties to reduce latency.</p>\n<p><strong>Source list</strong>: text, audio, image, scanner, file.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"202f6d51-eaee-48ea-b8f1-e0cb250e7f65","name":"Record: List all","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    records {\r\n        _id\r\n        date_time\r\n        customer {\r\n            _id\r\n            first_name\r\n        }\r\n        title\r\n        source\r\n        tags\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0f34dbb37165985dac8e"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:54:23 GMT"},{"key":"content-length","value":"256"},{"key":"x-envoy-upstream-service-time","value":"11725"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"records\": [\n            {\n                \"_id\": \"640a0e56d10e3aa222cbfe4a\",\n                \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n                \"created_at\": null,\n                \"customer\": null,\n                \"date_time\": \"2021-04-20T13:09:00Z\",\n                \"modified_at\": null,\n                \"source\": \"FILE\",\n                \"tags\": [\n                    \"whatsapp\",\n                    \"chronic\",\n                    \"prescription\",\n                    \"patient risk\"\n                ],\n                \"title\": \"WhatsApp file\"\n            },\n            {\n                \"_id\": \"640a0ec0d10e3aa222cc0ef3\",\n                \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n                \"created_at\": \"2021-04-20T13:09:00Z\",\n                \"customer\": null,\n                \"date_time\": \"2021-04-20T13:09:00Z\",\n                \"modified_at\": null,\n                \"source\": \"FILE\",\n                \"tags\": [\n                    \"whatsapp\",\n                    \"chronic\",\n                    \"prescription\",\n                    \"patient risk\"\n                ],\n                \"title\": \"WhatsApp file\"\n            }\n        ]\n    }\n}"}],"_postman_id":"90ce64cb-0050-4a73-ad81-a166259e13b3"},{"name":"Record: List all with query","id":"493c855e-8c4d-4665-9122-5e287895a594","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    records (\r\n        query: {\r\n            date_time_gte: \"2021-04-20T13:09:00.000Z\"\r\n            source: FILE\r\n        }\r\n    ) {\r\n        _id\r\n        date_time\r\n        customer {\r\n            _id\r\n            first_name\r\n        }\r\n        title\r\n        source\r\n        tags\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint list all customers records with filters. You can list less properties to reduce latency.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"d3378732-e969-49de-bb5e-def5499d5b43","name":"Record: List all with query","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    records (\r\n        query: {\r\n            date_time_gte: \"2021-04-20T13:09:00.000Z\"\r\n            source: FILE\r\n        }\r\n    ) {\r\n        _id\r\n        date_time\r\n        customer {\r\n            _id\r\n            first_name\r\n        }\r\n        title\r\n        source\r\n        tags\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0f2179a5902632d21b55"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:53:58 GMT"},{"key":"content-length","value":"256"},{"key":"x-envoy-upstream-service-time","value":"4429"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"records\": [\n            {\n                \"_id\": \"640a0e56d10e3aa222cbfe4a\",\n                \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n                \"created_at\": null,\n                \"customer\": null,\n                \"date_time\": \"2021-04-20T13:09:00Z\",\n                \"modified_at\": null,\n                \"source\": \"FILE\",\n                \"tags\": [\n                    \"whatsapp\",\n                    \"chronic\",\n                    \"prescription\",\n                    \"patient risk\"\n                ],\n                \"title\": \"WhatsApp file\"\n            },\n            {\n                \"_id\": \"640a0ec0d10e3aa222cc0ef3\",\n                \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n                \"created_at\": \"2021-04-20T13:09:00Z\",\n                \"customer\": null,\n                \"date_time\": \"2021-04-20T13:09:00Z\",\n                \"modified_at\": null,\n                \"source\": \"FILE\",\n                \"tags\": [\n                    \"whatsapp\",\n                    \"chronic\",\n                    \"prescription\",\n                    \"patient risk\"\n                ],\n                \"title\": \"WhatsApp file\"\n            }\n        ]\n    }\n}"}],"_postman_id":"493c855e-8c4d-4665-9122-5e287895a594"},{"name":"Record: Insert one","id":"88b7d254-b019-4174-8e06-245916ff5bd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    insertOneRecord (\r\n        data: {\r\n            date_time: \"2021-04-20T13:09:00.000Z\",\r\n            customer: {\r\n                link: \"6297a5316fe9b9b0505ce58d\"\r\n            },\r\n            title: \"WhatsApp file\",\r\n            source: FILE,\r\n            tags: [\"whatsapp\", \"chronic\", \"prescription\"],\r\n            created_at: \"2021-04-20T13:09:00.000Z\",\r\n            _partition: \"640a08e6fdb5df4b7ce1dd0c\"\r\n        }\r\n    ) {\r\n        _id,\r\n        created_at\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint insert one customer record. To insert more than 1, use insertManyRecords.</p>\n<p>To insert audio files, use mp3 file format audio/mpeg.</p>\n<p>To insert images, use png and jpg file format image/jpg, image/jpeg and image/png.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"0b778723-437c-4ad8-81c9-fb40ecef1ec1","name":"Record: Insert one","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    insertOneRecord (\r\n        data: {\r\n            date_time: \"2021-04-20T13:09:00.000Z\",\r\n            customer: {\r\n                link: \"6297a5316fe9b9b0505ce58d\"\r\n            },\r\n            title: \"WhatsApp file\",\r\n            source: FILE,\r\n            tags: [\"whatsapp\", \"chronic\", \"prescription\"],\r\n            created_at: \"2021-04-20T13:09:00.000Z\",\r\n            _partition: \"640a08e6fdb5df4b7ce1dd0c\"\r\n        }\r\n    ) {\r\n        _id,\r\n        created_at\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0ebfd10e3aa222cc0ee9"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:52:16 GMT"},{"key":"content-length","value":"112"},{"key":"x-envoy-upstream-service-time","value":"823"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"insertOneRecord\": {\n            \"_id\": \"640a0ec0d10e3aa222cc0ef3\",\n            \"created_at\": \"2021-04-20T13:09:00Z\"\n        }\n    }\n}"}],"_postman_id":"88b7d254-b019-4174-8e06-245916ff5bd3"},{"name":"Record: Update one","id":"7140216f-72af-449e-ae06-e521f7748089","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    updateOneRecord (\r\n        query: {\r\n            _id: \"640a0ec0d10e3aa222cc0ef3\"\r\n        },\r\n        set: {\r\n            tags: [\"whatsapp\", \"chronic\", \"prescription\", \"patient risk\"]\r\n        }\r\n    ) {\r\n        _id,\r\n        created_at\r\n        tags\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint update one customer record. To update more than 1, use updateManyRecords.</p>\n<p>To update audio files, use mp3 file format audio/mpeg.</p>\n<p>To update images, use png and jpg file format image/jpg, image/jpeg and image/png.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"fffdd5b1-6317-4358-be54-c41016034618","name":"Record: Update one","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation {\r\n    updateOneRecord (\r\n        query: {\r\n            _id: \"640a0ec0d10e3aa222cc0ef3\"\r\n        },\r\n        set: {\r\n            tags: [\"whatsapp\", \"chronic\", \"prescription\", \"patient risk\"]\r\n        }\r\n    ) {\r\n        _id,\r\n        created_at\r\n        tags\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0ee2d10e3aa222cc1438"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:52:51 GMT"},{"key":"content-length","value":"155"},{"key":"x-envoy-upstream-service-time","value":"937"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"updateOneRecord\": {\n            \"_id\": \"640a0ec0d10e3aa222cc0ef3\",\n            \"created_at\": \"2021-04-20T13:09:00Z\",\n            \"tags\": [\n                \"whatsapp\",\n                \"chronic\",\n                \"prescription\",\n                \"patient risk\"\n            ]\n        }\n    }\n}"}],"_postman_id":"7140216f-72af-449e-ae06-e521f7748089"},{"name":"Record: Get one","id":"4500ebfb-8b24-42b3-8f3d-6ef6ac9e65e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    record (\r\n        query: {\r\n            _id: \"640a0ec0d10e3aa222cc0ef3\"\r\n        }\r\n    ) {\r\n        _id\r\n        date_time\r\n        customer {\r\n            _id\r\n            first_name\r\n        }\r\n        title\r\n        source\r\n        tags\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql","description":"<p>This endpoint get one customer record.</p>\n","urlObject":{"path":["graphql"],"host":["https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"],"query":[],"variable":[]}},"response":[{"id":"5b0192d0-ecdc-4c21-856c-a513b5a8f2cf","name":"Record: Get one","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\r\n    record (\r\n        query: {\r\n            _id: \"640a0ec0d10e3aa222cc0ef3\"\r\n        }\r\n    ) {\r\n        _id\r\n        date_time\r\n        customer {\r\n            _id\r\n            first_name\r\n        }\r\n        title\r\n        source\r\n        tags\r\n        created_at\r\n        modified_at\r\n        _partition\r\n    }\r\n}","variables":""}},"url":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr/graphql"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, no-store, must-revalidate"},{"key":"content-encoding","value":"gzip"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubdomains;"},{"key":"vary","value":"Origin"},{"key":"x-appservices-request-id","value":"640a0ef6fdb5df4b7ce2d56d"},{"key":"x-frame-options","value":"DENY"},{"key":"date","value":"Thu, 09 Mar 2023 16:53:10 GMT"},{"key":"content-length","value":"231"},{"key":"x-envoy-upstream-service-time","value":"691"},{"key":"server","value":"mdbws"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"record\": {\n            \"_id\": \"640a0ec0d10e3aa222cc0ef3\",\n            \"_partition\": \"640a08e6fdb5df4b7ce1dd0c\",\n            \"created_at\": \"2021-04-20T13:09:00Z\",\n            \"customer\": null,\n            \"date_time\": \"2021-04-20T13:09:00Z\",\n            \"modified_at\": null,\n            \"source\": \"FILE\",\n            \"tags\": [\n                \"whatsapp\",\n                \"chronic\",\n                \"prescription\",\n                \"patient risk\"\n            ],\n            \"title\": \"WhatsApp file\"\n        }\n    }\n}"}],"_postman_id":"4500ebfb-8b24-42b3-8f3d-6ef6ac9e65e1"}],"event":[{"listen":"prerequest","script":{"id":"e93c48d5-f137-47cf-a508-2482c8f99d3c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"16a11e48-b5bf-4334-8ade-92f8ce96bff7","type":"text/javascript","exec":[""]}}],"variable":[{"key":"username","value":""},{"key":"password","value":""},{"key":"refresh_token","value":""},{"key":"access_token","value":""},{"key":"url","value":"https://realm.mongodb.com/api/client/v2.0/app/ecodoc-ibtgr"}]}