@@ -279,7 +279,6 @@ public func graphqlSubscribe(
279
279
280
280
// MARK: Async/Await
281
281
282
- @available ( macOS 10 . 15 , iOS 15 , watchOS 8 , tvOS 15 , * )
283
282
/// This is the primary entry point function for fulfilling GraphQL operations
284
283
/// by parsing, validating, and executing a GraphQL document along side a
285
284
/// GraphQL schema.
@@ -315,6 +314,7 @@ public func graphqlSubscribe(
315
314
/// `errors` if an error occurs only in a specific field. If that happens the value of that
316
315
/// field will be `null` and there will be an error inside `errors` specifying the reason for
317
316
/// the failure and the path of the failed field.
317
+ @available ( macOS 10 . 15 , iOS 15 , watchOS 8 , tvOS 15 , * )
318
318
public func graphql(
319
319
queryStrategy: QueryFieldExecutionStrategy = SerialFieldExecutionStrategy ( ) ,
320
320
mutationStrategy: MutationFieldExecutionStrategy = SerialFieldExecutionStrategy ( ) ,
@@ -343,7 +343,6 @@ public func graphql(
343
343
) . get ( )
344
344
}
345
345
346
- @available ( macOS 10 . 15 , iOS 15 , watchOS 8 , tvOS 15 , * )
347
346
/// This is the primary entry point function for fulfilling GraphQL subscription
348
347
/// operations by parsing, validating, and executing a GraphQL subscription
349
348
/// document along side a GraphQL schema.
@@ -382,6 +381,7 @@ public func graphql(
382
381
/// If that happens the value of that field will be `null` and there
383
382
/// will be an error inside `errors` specifying the reason for the failure and the path of the
384
383
/// failed field.
384
+ @available ( macOS 10 . 15 , iOS 15 , watchOS 8 , tvOS 15 , * )
385
385
public func graphqlSubscribe(
386
386
queryStrategy: QueryFieldExecutionStrategy = SerialFieldExecutionStrategy ( ) ,
387
387
mutationStrategy: MutationFieldExecutionStrategy = SerialFieldExecutionStrategy ( ) ,
0 commit comments