Skip to content

Commit f563ae8

Browse files
committed
Addressed comments
1 parent 5ae1bcc commit f563ae8

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

packages/data-connect/test/emulatorSeeder.ts

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -17,30 +17,9 @@
1717

1818
import fs from 'fs';
1919
import * as path from 'path';
20-
// curl localhost:3628/setupSchema -X POST -d '{
21-
// "service_id": "s",
22-
// "schema": {
23-
// "files": [
24-
// {
25-
// "path": "schema/post.gql",
26-
// "content": "type Post @table {content: String!}"
27-
// }
28-
// ]
29-
// },
30-
// "connectors": {
31-
// "crud": {
32-
// "files": [
33-
// {
34-
// "path": "operations/post.gql",
35-
// "content": "query getPost($id: UUID!) @auth(level: PUBLIC) {post(id: $id) {content}} query listPosts @auth(level: PUBLIC) {posts {content}} mutation createPost($id: UUID!, content: String!) @auth(level: PUBLIC) {post_insert(data: {id: $id, content: $content})} mutation deletePost($id: UUID!) @auth(level: PUBLIC) { post_delete(id: $id)}"
36-
// }
37-
// ]
38-
// }
39-
// }
4020

4121
import { ReferenceType } from '../src';
4222

43-
// }
4423
import { EMULATOR_PORT } from './util';
4524

4625
export interface SeedInfo {

0 commit comments

Comments
 (0)