@graphql-mesh/types 0.104.14-alpha-20250922151901-2100ea6ff399fc0053cc422e3cc6ab17fe79be1c → 0.104.15-alpha-20251102235905-8ac0fd50987066e2ac7a0fe30cf561aa296b726b

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2592,18 +2592,10 @@ exports.jsonSchema = {
2592
2592
  "invalidations": {
2593
2593
  "type": "array",
2594
2594
  "items": {
2595
- "description": "Any of: LiveQueryInvalidationByMutation, LiveQueryInvalidationByPolling",
2596
- "anyOf": [
2597
- {
2598
- "$ref": "#/definitions/LiveQueryInvalidationByMutation"
2599
- },
2600
- {
2601
- "$ref": "#/definitions/LiveQueryInvalidationByPolling"
2602
- }
2603
- ]
2595
+ "$ref": "#/definitions/LiveQueryInvalidation"
2604
2596
  },
2605
2597
  "additionalItems": false,
2606
- "description": "Invalidate a query or queries when a specific operation is done without an error (Any of: LiveQueryInvalidationByMutation, LiveQueryInvalidationByPolling)"
2598
+ "description": "Invalidate a query or queries when a specific operation is done without an error"
2607
2599
  },
2608
2600
  "resourceIdentifier": {
2609
2601
  "type": "string",
@@ -2627,33 +2619,15 @@ exports.jsonSchema = {
2627
2619
  }
2628
2620
  }
2629
2621
  },
2630
- "LiveQueryInvalidationByMutation": {
2622
+ "LiveQueryInvalidation": {
2631
2623
  "additionalProperties": false,
2632
2624
  "type": "object",
2633
- "title": "LiveQueryInvalidationByMutation",
2625
+ "title": "LiveQueryInvalidation",
2634
2626
  "properties": {
2635
2627
  "field": {
2636
2628
  "type": "string",
2637
2629
  "description": "Path to the operation that could effect it. In a form: Mutation.something. Note that wildcard is not supported in this field."
2638
2630
  },
2639
- "invalidate": {
2640
- "type": "array",
2641
- "items": {
2642
- "type": "string"
2643
- },
2644
- "additionalItems": false
2645
- }
2646
- },
2647
- "required": [
2648
- "field",
2649
- "invalidate"
2650
- ]
2651
- },
2652
- "LiveQueryInvalidationByPolling": {
2653
- "additionalProperties": false,
2654
- "type": "object",
2655
- "title": "LiveQueryInvalidationByPolling",
2656
- "properties": {
2657
2631
  "pollingInterval": {
2658
2632
  "type": "integer",
2659
2633
  "description": "Polling interval in milliseconds"
@@ -2663,12 +2637,10 @@ exports.jsonSchema = {
2663
2637
  "items": {
2664
2638
  "type": "string"
2665
2639
  },
2666
- "additionalItems": false,
2667
- "description": "Schema coordinate of the query to be polled"
2640
+ "additionalItems": false
2668
2641
  }
2669
2642
  },
2670
2643
  "required": [
2671
- "pollingInterval",
2672
2644
  "invalidate"
2673
2645
  ]
2674
2646
  },
@@ -2729,6 +2701,14 @@ exports.jsonSchema = {
2729
2701
  }
2730
2702
  ],
2731
2703
  "description": "The path to the code runs before the store is attached to the schema"
2704
+ },
2705
+ "mockGenerationBehavior": {
2706
+ "type": "string",
2707
+ "enum": [
2708
+ "deterministic",
2709
+ "random"
2710
+ ],
2711
+ "description": "Set to `'deterministic'` if the default random mock generation behavior causes flakiness.\n\nDefault: 'random' (Allowed values: deterministic, random)"
2732
2712
  }
2733
2713
  }
2734
2714
  },
@@ -2750,8 +2730,20 @@ exports.jsonSchema = {
2750
2730
  "description": "Faker.js expression or function\nRead more (https://github.com/marak/Faker.js/#fakerfake)\nExample:\nfaker: `name.firstName`\nfaker: `{{ name.firstName }} {{ name.lastName }}`"
2751
2731
  },
2752
2732
  "custom": {
2753
- "type": "string",
2754
- "description": "Custom mocking\nIt can be a module or json file.\nBoth \"moduleName#exportName\" or only \"moduleName\" would work"
2733
+ "anyOf": [
2734
+ {
2735
+ "type": "object",
2736
+ "additionalProperties": true
2737
+ },
2738
+ {
2739
+ "type": "string"
2740
+ },
2741
+ {
2742
+ "type": "array",
2743
+ "additionalItems": true
2744
+ }
2745
+ ],
2746
+ "description": "Custom mocking\nIt can be a module or json file.\nBoth \"moduleName#exportName\" or only \"moduleName\" would work\n\nYou can also provide a function directly"
2755
2747
  },
2756
2748
  "length": {
2757
2749
  "type": "integer",
@@ -2461,18 +2461,10 @@
2461
2461
  "invalidations": {
2462
2462
  "type": "array",
2463
2463
  "items": {
2464
- "description": "Any of: LiveQueryInvalidationByMutation, LiveQueryInvalidationByPolling",
2465
- "anyOf": [
2466
- {
2467
- "$ref": "#/definitions/LiveQueryInvalidationByMutation"
2468
- },
2469
- {
2470
- "$ref": "#/definitions/LiveQueryInvalidationByPolling"
2471
- }
2472
- ]
2464
+ "$ref": "#/definitions/LiveQueryInvalidation"
2473
2465
  },
2474
2466
  "additionalItems": false,
2475
- "description": "Invalidate a query or queries when a specific operation is done without an error (Any of: LiveQueryInvalidationByMutation, LiveQueryInvalidationByPolling)"
2467
+ "description": "Invalidate a query or queries when a specific operation is done without an error"
2476
2468
  },
2477
2469
  "resourceIdentifier": {
2478
2470
  "type": "string",
@@ -2496,30 +2488,15 @@
2496
2488
  }
2497
2489
  }
2498
2490
  },
2499
- "LiveQueryInvalidationByMutation": {
2491
+ "LiveQueryInvalidation": {
2500
2492
  "additionalProperties": false,
2501
2493
  "type": "object",
2502
- "title": "LiveQueryInvalidationByMutation",
2494
+ "title": "LiveQueryInvalidation",
2503
2495
  "properties": {
2504
2496
  "field": {
2505
2497
  "type": "string",
2506
2498
  "description": "Path to the operation that could effect it. In a form: Mutation.something. Note that wildcard is not supported in this field."
2507
2499
  },
2508
- "invalidate": {
2509
- "type": "array",
2510
- "items": {
2511
- "type": "string"
2512
- },
2513
- "additionalItems": false
2514
- }
2515
- },
2516
- "required": ["field", "invalidate"]
2517
- },
2518
- "LiveQueryInvalidationByPolling": {
2519
- "additionalProperties": false,
2520
- "type": "object",
2521
- "title": "LiveQueryInvalidationByPolling",
2522
- "properties": {
2523
2500
  "pollingInterval": {
2524
2501
  "type": "integer",
2525
2502
  "description": "Polling interval in milliseconds"
@@ -2529,11 +2506,10 @@
2529
2506
  "items": {
2530
2507
  "type": "string"
2531
2508
  },
2532
- "additionalItems": false,
2533
- "description": "Schema coordinate of the query to be polled"
2509
+ "additionalItems": false
2534
2510
  }
2535
2511
  },
2536
- "required": ["pollingInterval", "invalidate"]
2512
+ "required": ["invalidate"]
2537
2513
  },
2538
2514
  "LiveQueryIndexBy": {
2539
2515
  "additionalProperties": false,
@@ -2589,6 +2565,11 @@
2589
2565
  }
2590
2566
  ],
2591
2567
  "description": "The path to the code runs before the store is attached to the schema"
2568
+ },
2569
+ "mockGenerationBehavior": {
2570
+ "type": "string",
2571
+ "enum": ["deterministic", "random"],
2572
+ "description": "Set to `'deterministic'` if the default random mock generation behavior causes flakiness.\n\nDefault: 'random' (Allowed values: deterministic, random)"
2592
2573
  }
2593
2574
  }
2594
2575
  },
@@ -2610,8 +2591,20 @@
2610
2591
  "description": "Faker.js expression or function\nRead more (https://github.com/marak/Faker.js/#fakerfake)\nExample:\nfaker: `name.firstName`\nfaker: `{{ name.firstName }} {{ name.lastName }}`"
2611
2592
  },
2612
2593
  "custom": {
2613
- "type": "string",
2614
- "description": "Custom mocking\nIt can be a module or json file.\nBoth \"moduleName#exportName\" or only \"moduleName\" would work"
2594
+ "anyOf": [
2595
+ {
2596
+ "type": "object",
2597
+ "additionalProperties": true
2598
+ },
2599
+ {
2600
+ "type": "string"
2601
+ },
2602
+ {
2603
+ "type": "array",
2604
+ "additionalItems": true
2605
+ }
2606
+ ],
2607
+ "description": "Custom mocking\nIt can be a module or json file.\nBoth \"moduleName#exportName\" or only \"moduleName\" would work\n\nYou can also provide a function directly"
2615
2608
  },
2616
2609
  "length": {
2617
2610
  "type": "integer",
@@ -2589,18 +2589,10 @@ export const jsonSchema = {
2589
2589
  "invalidations": {
2590
2590
  "type": "array",
2591
2591
  "items": {
2592
- "description": "Any of: LiveQueryInvalidationByMutation, LiveQueryInvalidationByPolling",
2593
- "anyOf": [
2594
- {
2595
- "$ref": "#/definitions/LiveQueryInvalidationByMutation"
2596
- },
2597
- {
2598
- "$ref": "#/definitions/LiveQueryInvalidationByPolling"
2599
- }
2600
- ]
2592
+ "$ref": "#/definitions/LiveQueryInvalidation"
2601
2593
  },
2602
2594
  "additionalItems": false,
2603
- "description": "Invalidate a query or queries when a specific operation is done without an error (Any of: LiveQueryInvalidationByMutation, LiveQueryInvalidationByPolling)"
2595
+ "description": "Invalidate a query or queries when a specific operation is done without an error"
2604
2596
  },
2605
2597
  "resourceIdentifier": {
2606
2598
  "type": "string",
@@ -2624,33 +2616,15 @@ export const jsonSchema = {
2624
2616
  }
2625
2617
  }
2626
2618
  },
2627
- "LiveQueryInvalidationByMutation": {
2619
+ "LiveQueryInvalidation": {
2628
2620
  "additionalProperties": false,
2629
2621
  "type": "object",
2630
- "title": "LiveQueryInvalidationByMutation",
2622
+ "title": "LiveQueryInvalidation",
2631
2623
  "properties": {
2632
2624
  "field": {
2633
2625
  "type": "string",
2634
2626
  "description": "Path to the operation that could effect it. In a form: Mutation.something. Note that wildcard is not supported in this field."
2635
2627
  },
2636
- "invalidate": {
2637
- "type": "array",
2638
- "items": {
2639
- "type": "string"
2640
- },
2641
- "additionalItems": false
2642
- }
2643
- },
2644
- "required": [
2645
- "field",
2646
- "invalidate"
2647
- ]
2648
- },
2649
- "LiveQueryInvalidationByPolling": {
2650
- "additionalProperties": false,
2651
- "type": "object",
2652
- "title": "LiveQueryInvalidationByPolling",
2653
- "properties": {
2654
2628
  "pollingInterval": {
2655
2629
  "type": "integer",
2656
2630
  "description": "Polling interval in milliseconds"
@@ -2660,12 +2634,10 @@ export const jsonSchema = {
2660
2634
  "items": {
2661
2635
  "type": "string"
2662
2636
  },
2663
- "additionalItems": false,
2664
- "description": "Schema coordinate of the query to be polled"
2637
+ "additionalItems": false
2665
2638
  }
2666
2639
  },
2667
2640
  "required": [
2668
- "pollingInterval",
2669
2641
  "invalidate"
2670
2642
  ]
2671
2643
  },
@@ -2726,6 +2698,14 @@ export const jsonSchema = {
2726
2698
  }
2727
2699
  ],
2728
2700
  "description": "The path to the code runs before the store is attached to the schema"
2701
+ },
2702
+ "mockGenerationBehavior": {
2703
+ "type": "string",
2704
+ "enum": [
2705
+ "deterministic",
2706
+ "random"
2707
+ ],
2708
+ "description": "Set to `'deterministic'` if the default random mock generation behavior causes flakiness.\n\nDefault: 'random' (Allowed values: deterministic, random)"
2729
2709
  }
2730
2710
  }
2731
2711
  },
@@ -2747,8 +2727,20 @@ export const jsonSchema = {
2747
2727
  "description": "Faker.js expression or function\nRead more (https://github.com/marak/Faker.js/#fakerfake)\nExample:\nfaker: `name.firstName`\nfaker: `{{ name.firstName }} {{ name.lastName }}`"
2748
2728
  },
2749
2729
  "custom": {
2750
- "type": "string",
2751
- "description": "Custom mocking\nIt can be a module or json file.\nBoth \"moduleName#exportName\" or only \"moduleName\" would work"
2730
+ "anyOf": [
2731
+ {
2732
+ "type": "object",
2733
+ "additionalProperties": true
2734
+ },
2735
+ {
2736
+ "type": "string"
2737
+ },
2738
+ {
2739
+ "type": "array",
2740
+ "additionalItems": true
2741
+ }
2742
+ ],
2743
+ "description": "Custom mocking\nIt can be a module or json file.\nBoth \"moduleName#exportName\" or only \"moduleName\" would work\n\nYou can also provide a function directly"
2752
2744
  },
2753
2745
  "length": {
2754
2746
  "type": "integer",
@@ -2461,18 +2461,10 @@
2461
2461
  "invalidations": {
2462
2462
  "type": "array",
2463
2463
  "items": {
2464
- "description": "Any of: LiveQueryInvalidationByMutation, LiveQueryInvalidationByPolling",
2465
- "anyOf": [
2466
- {
2467
- "$ref": "#/definitions/LiveQueryInvalidationByMutation"
2468
- },
2469
- {
2470
- "$ref": "#/definitions/LiveQueryInvalidationByPolling"
2471
- }
2472
- ]
2464
+ "$ref": "#/definitions/LiveQueryInvalidation"
2473
2465
  },
2474
2466
  "additionalItems": false,
2475
- "description": "Invalidate a query or queries when a specific operation is done without an error (Any of: LiveQueryInvalidationByMutation, LiveQueryInvalidationByPolling)"
2467
+ "description": "Invalidate a query or queries when a specific operation is done without an error"
2476
2468
  },
2477
2469
  "resourceIdentifier": {
2478
2470
  "type": "string",
@@ -2496,30 +2488,15 @@
2496
2488
  }
2497
2489
  }
2498
2490
  },
2499
- "LiveQueryInvalidationByMutation": {
2491
+ "LiveQueryInvalidation": {
2500
2492
  "additionalProperties": false,
2501
2493
  "type": "object",
2502
- "title": "LiveQueryInvalidationByMutation",
2494
+ "title": "LiveQueryInvalidation",
2503
2495
  "properties": {
2504
2496
  "field": {
2505
2497
  "type": "string",
2506
2498
  "description": "Path to the operation that could effect it. In a form: Mutation.something. Note that wildcard is not supported in this field."
2507
2499
  },
2508
- "invalidate": {
2509
- "type": "array",
2510
- "items": {
2511
- "type": "string"
2512
- },
2513
- "additionalItems": false
2514
- }
2515
- },
2516
- "required": ["field", "invalidate"]
2517
- },
2518
- "LiveQueryInvalidationByPolling": {
2519
- "additionalProperties": false,
2520
- "type": "object",
2521
- "title": "LiveQueryInvalidationByPolling",
2522
- "properties": {
2523
2500
  "pollingInterval": {
2524
2501
  "type": "integer",
2525
2502
  "description": "Polling interval in milliseconds"
@@ -2529,11 +2506,10 @@
2529
2506
  "items": {
2530
2507
  "type": "string"
2531
2508
  },
2532
- "additionalItems": false,
2533
- "description": "Schema coordinate of the query to be polled"
2509
+ "additionalItems": false
2534
2510
  }
2535
2511
  },
2536
- "required": ["pollingInterval", "invalidate"]
2512
+ "required": ["invalidate"]
2537
2513
  },
2538
2514
  "LiveQueryIndexBy": {
2539
2515
  "additionalProperties": false,
@@ -2589,6 +2565,11 @@
2589
2565
  }
2590
2566
  ],
2591
2567
  "description": "The path to the code runs before the store is attached to the schema"
2568
+ },
2569
+ "mockGenerationBehavior": {
2570
+ "type": "string",
2571
+ "enum": ["deterministic", "random"],
2572
+ "description": "Set to `'deterministic'` if the default random mock generation behavior causes flakiness.\n\nDefault: 'random' (Allowed values: deterministic, random)"
2592
2573
  }
2593
2574
  }
2594
2575
  },
@@ -2610,8 +2591,20 @@
2610
2591
  "description": "Faker.js expression or function\nRead more (https://github.com/marak/Faker.js/#fakerfake)\nExample:\nfaker: `name.firstName`\nfaker: `{{ name.firstName }} {{ name.lastName }}`"
2611
2592
  },
2612
2593
  "custom": {
2613
- "type": "string",
2614
- "description": "Custom mocking\nIt can be a module or json file.\nBoth \"moduleName#exportName\" or only \"moduleName\" would work"
2594
+ "anyOf": [
2595
+ {
2596
+ "type": "object",
2597
+ "additionalProperties": true
2598
+ },
2599
+ {
2600
+ "type": "string"
2601
+ },
2602
+ {
2603
+ "type": "array",
2604
+ "additionalItems": true
2605
+ }
2606
+ ],
2607
+ "description": "Custom mocking\nIt can be a module or json file.\nBoth \"moduleName#exportName\" or only \"moduleName\" would work\n\nYou can also provide a function directly"
2615
2608
  },
2616
2609
  "length": {
2617
2610
  "type": "integer",
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@graphql-mesh/types",
3
- "version": "0.104.14-alpha-20250922151901-2100ea6ff399fc0053cc422e3cc6ab17fe79be1c",
3
+ "version": "0.104.15-alpha-20251102235905-8ac0fd50987066e2ac7a0fe30cf561aa296b726b",
4
4
  "sideEffects": false,
5
5
  "peerDependencies": {
6
6
  "graphql": "*"
7
7
  },
8
8
  "dependencies": {
9
9
  "@graphql-hive/pubsub": "next",
10
- "@graphql-mesh/store": "0.104.14-alpha-20250922151901-2100ea6ff399fc0053cc422e3cc6ab17fe79be1c",
10
+ "@graphql-mesh/store": "0.104.15-alpha-20251102235905-8ac0fd50987066e2ac7a0fe30cf561aa296b726b",
11
11
  "@graphql-tools/batch-delegate": "^10.0.0",
12
12
  "@graphql-tools/delegate": "^11.0.0",
13
13
  "@graphql-tools/utils": "^10.8.0",
@@ -2083,9 +2083,9 @@ export interface HTTPDetailsExtensionsConfig {
2083
2083
  }
2084
2084
  export interface LiveQueryConfig {
2085
2085
  /**
2086
- * Invalidate a query or queries when a specific operation is done without an error (Any of: LiveQueryInvalidationByMutation, LiveQueryInvalidationByPolling)
2086
+ * Invalidate a query or queries when a specific operation is done without an error
2087
2087
  */
2088
- invalidations?: (LiveQueryInvalidationByMutation | LiveQueryInvalidationByPolling)[];
2088
+ invalidations?: LiveQueryInvalidation[];
2089
2089
  /**
2090
2090
  * Custom strategy for building resources identifiers
2091
2091
  * By default resource identifiers are built by concatenating the Typename with the id separated by a color (`User:1`).
@@ -2114,21 +2114,15 @@ export interface LiveQueryConfig {
2114
2114
  */
2115
2115
  indexBy?: LiveQueryIndexBy[];
2116
2116
  }
2117
- export interface LiveQueryInvalidationByMutation {
2117
+ export interface LiveQueryInvalidation {
2118
2118
  /**
2119
2119
  * Path to the operation that could effect it. In a form: Mutation.something. Note that wildcard is not supported in this field.
2120
2120
  */
2121
- field: string;
2122
- invalidate: string[];
2123
- }
2124
- export interface LiveQueryInvalidationByPolling {
2121
+ field?: string;
2125
2122
  /**
2126
2123
  * Polling interval in milliseconds
2127
2124
  */
2128
- pollingInterval: number;
2129
- /**
2130
- * Schema coordinate of the query to be polled
2131
- */
2125
+ pollingInterval?: number;
2132
2126
  invalidate: string[];
2133
2127
  }
2134
2128
  export interface LiveQueryIndexBy {
@@ -2157,6 +2151,12 @@ export interface MockingConfig {
2157
2151
  * The path to the code runs before the store is attached to the schema
2158
2152
  */
2159
2153
  initializeStore?: any;
2154
+ /**
2155
+ * Set to `'deterministic'` if the default random mock generation behavior causes flakiness.
2156
+ *
2157
+ * Default: 'random' (Allowed values: deterministic, random)
2158
+ */
2159
+ mockGenerationBehavior?: 'deterministic' | 'random';
2160
2160
  }
2161
2161
  export interface MockingFieldConfig {
2162
2162
  /**
@@ -2181,8 +2181,10 @@ export interface MockingFieldConfig {
2181
2181
  * Custom mocking
2182
2182
  * It can be a module or json file.
2183
2183
  * Both "moduleName#exportName" or only "moduleName" would work
2184
+ *
2185
+ * You can also provide a function directly
2184
2186
  */
2185
- custom?: string;
2187
+ custom?: any;
2186
2188
  /**
2187
2189
  * Length of the mock list
2188
2190
  * For the list types `[ObjectType]`, how many `ObjectType` you want to return?
@@ -2083,9 +2083,9 @@ export interface HTTPDetailsExtensionsConfig {
2083
2083
  }
2084
2084
  export interface LiveQueryConfig {
2085
2085
  /**
2086
- * Invalidate a query or queries when a specific operation is done without an error (Any of: LiveQueryInvalidationByMutation, LiveQueryInvalidationByPolling)
2086
+ * Invalidate a query or queries when a specific operation is done without an error
2087
2087
  */
2088
- invalidations?: (LiveQueryInvalidationByMutation | LiveQueryInvalidationByPolling)[];
2088
+ invalidations?: LiveQueryInvalidation[];
2089
2089
  /**
2090
2090
  * Custom strategy for building resources identifiers
2091
2091
  * By default resource identifiers are built by concatenating the Typename with the id separated by a color (`User:1`).
@@ -2114,21 +2114,15 @@ export interface LiveQueryConfig {
2114
2114
  */
2115
2115
  indexBy?: LiveQueryIndexBy[];
2116
2116
  }
2117
- export interface LiveQueryInvalidationByMutation {
2117
+ export interface LiveQueryInvalidation {
2118
2118
  /**
2119
2119
  * Path to the operation that could effect it. In a form: Mutation.something. Note that wildcard is not supported in this field.
2120
2120
  */
2121
- field: string;
2122
- invalidate: string[];
2123
- }
2124
- export interface LiveQueryInvalidationByPolling {
2121
+ field?: string;
2125
2122
  /**
2126
2123
  * Polling interval in milliseconds
2127
2124
  */
2128
- pollingInterval: number;
2129
- /**
2130
- * Schema coordinate of the query to be polled
2131
- */
2125
+ pollingInterval?: number;
2132
2126
  invalidate: string[];
2133
2127
  }
2134
2128
  export interface LiveQueryIndexBy {
@@ -2157,6 +2151,12 @@ export interface MockingConfig {
2157
2151
  * The path to the code runs before the store is attached to the schema
2158
2152
  */
2159
2153
  initializeStore?: any;
2154
+ /**
2155
+ * Set to `'deterministic'` if the default random mock generation behavior causes flakiness.
2156
+ *
2157
+ * Default: 'random' (Allowed values: deterministic, random)
2158
+ */
2159
+ mockGenerationBehavior?: 'deterministic' | 'random';
2160
2160
  }
2161
2161
  export interface MockingFieldConfig {
2162
2162
  /**
@@ -2181,8 +2181,10 @@ export interface MockingFieldConfig {
2181
2181
  * Custom mocking
2182
2182
  * It can be a module or json file.
2183
2183
  * Both "moduleName#exportName" or only "moduleName" would work
2184
+ *
2185
+ * You can also provide a function directly
2184
2186
  */
2185
- custom?: string;
2187
+ custom?: any;
2186
2188
  /**
2187
2189
  * Length of the mock list
2188
2190
  * For the list types `[ObjectType]`, how many `ObjectType` you want to return?