Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 0 additions & 69 deletions .github/workflows/build.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
lint:
uses: graphqlswift/ci/.github/workflows/lint.yaml@main
test:
uses: graphqlswift/ci/.github/workflows/test.yaml@main
with:
include_android: false
12 changes: 6 additions & 6 deletions Sources/Graphiti/Subscription/SubscribeField.swift
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ public extension SubscriptionField {
convenience init<ResolveType>(
_ name: String,
at function: @escaping SimpleAsyncResolve<SourceEventType, Context, Arguments, ResolveType>,
as: FieldType.Type,
as _: FieldType.Type,
atSub subFunc: @escaping SimpleAsyncResolve<
ObjectType,
Context,
Expand All @@ -470,7 +470,7 @@ public extension SubscriptionField {
convenience init<ResolveType>(
_ name: String,
at function: @escaping SimpleAsyncResolve<SourceEventType, Context, Arguments, ResolveType>,
as: FieldType.Type,
as _: FieldType.Type,
atSub subFunc: @escaping SimpleAsyncResolve<
ObjectType,
Context,
Expand Down Expand Up @@ -568,7 +568,7 @@ public extension SubscriptionField {
convenience init<ResolveType>(
_ name: String,
at function: @escaping SyncResolve<SourceEventType, Context, Arguments, ResolveType>,
as: FieldType.Type,
as _: FieldType.Type,
atSub subFunc: @escaping SyncResolve<
ObjectType,
Context,
Expand All @@ -589,7 +589,7 @@ public extension SubscriptionField {
convenience init<ResolveType>(
_ name: String,
at function: @escaping SyncResolve<SourceEventType, Context, Arguments, ResolveType>,
as: FieldType.Type,
as _: FieldType.Type,
atSub subFunc: @escaping SyncResolve<
ObjectType,
Context,
Expand Down Expand Up @@ -780,7 +780,7 @@ public extension SubscriptionField {
Arguments,
ResolveType
>,
as: FieldType.Type,
as _: FieldType.Type,
atSub subFunc: @escaping ConcurrentResolve<
ObjectType,
Context,
Expand All @@ -806,7 +806,7 @@ public extension SubscriptionField {
Arguments,
ResolveType
>,
as: FieldType.Type,
as _: FieldType.Type,
atSub subFunc: @escaping ConcurrentResolve<
ObjectType,
Context,
Expand Down