diff --git a/src/core/generator/snapshots/tailcall__core__generator__generator__test__read_all_with_different_domain_rest_api_gen.snap b/src/core/generator/snapshots/tailcall__core__generator__generator__test__read_all_with_different_domain_rest_api_gen.snap deleted file mode 100644 index 7ef26502d0..0000000000 --- a/src/core/generator/snapshots/tailcall__core__generator__generator__test__read_all_with_different_domain_rest_api_gen.snap +++ /dev/null @@ -1,81 +0,0 @@ ---- -source: src/core/generator/generator.rs -expression: config.to_sdl() ---- -schema @server @upstream(baseURL: "https://jsonplaceholder.typicode.com") { - query: Query -} - -type Dimension { - depth: Int - height: Int - width: Int -} - -type F1 { - body: String - email: String - id: Int - name: String - postId: Int -} - -type F2 { - body: String - id: Int - title: String - userId: Int -} - -type F3 { - limit: Int - products: [Product] - skip: Int - total: Int -} - -type Meum { - barcode: String - createdAt: String - qrCode: String - updatedAt: String -} - -type Product { - availabilityStatus: String - brand: String - category: String - description: String - dimensions: Dimension - discountPercentage: Int - id: Int - images: [String] - meta: Meum - minimumOrderQuantity: Int - price: Int - rating: Int - returnPolicy: String - reviews: [Review] - shippingInformation: String - sku: String - stock: Int - tags: [String] - thumbnail: String - title: String - warrantyInformation: String - weight: Int -} - -type Query { - f1(p1: Int!): [F1] @http(path: "/posts/{{.args.p1}}/comments") - f2(p1: Int!): F2 @http(path: "/posts/{{.args.p1}}") - f3(q: String): F3 @http(baseURL: "https://dummyjson.com", path: "/products/search", query: [{key: "q", value: "{{.args.q}}"}]) -} - -type Review { - comment: String - date: String - rating: Int - reviewerEmail: String - reviewerName: String -} diff --git a/src/core/generator/snapshots/tailcall__core__generator__generator__test__read_all_with_rest_api_gen.snap b/src/core/generator/snapshots/tailcall__core__generator__generator__test__read_all_with_rest_api_gen.snap deleted file mode 100644 index 3066163fde..0000000000 --- a/src/core/generator/snapshots/tailcall__core__generator__generator__test__read_all_with_rest_api_gen.snap +++ /dev/null @@ -1,42 +0,0 @@ ---- -source: src/core/generator/generator.rs -expression: config.to_sdl() ---- -schema @server @upstream(baseURL: "http://jsonplaceholder.typicode.com") { - query: Query -} - -type Address { - city: String - geo: Geo - street: String - suite: String - zipcode: String -} - -type Company { - bs: String - catchPhrase: String - name: String -} - -type F2 { - address: Address - company: Company - email: String - id: Int - name: String - phone: String - username: String - website: String -} - -type Geo { - lat: String - lng: String -} - -type Query { - f1: [F2] @http(path: "/users") - f2(p1: Int!): F2 @http(path: "/users/{{.args.p1}}") -}