mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
15 lines
434 B
Plaintext
15 lines
434 B
Plaintext
|
module Hasura.GraphQL.Schema.RemoteSource where
|
||
|
|
||
|
import Hasura.GraphQL.Parser
|
||
|
import Hasura.GraphQL.Schema.Backend
|
||
|
import Hasura.GraphQL.Schema.Common
|
||
|
import Hasura.RQL.Types.RemoteRelationship
|
||
|
import Hasura.SQL.AnyBackend
|
||
|
|
||
|
|
||
|
remoteSourceField
|
||
|
:: forall b r m n
|
||
|
. MonadBuildSchema b r m n
|
||
|
=> AnyBackend (RemoteSourceRelationshipInfo b)
|
||
|
-> m [FieldParser n (AnnotatedField b)]
|