Skip to content
Open
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
8 changes: 8 additions & 0 deletions graphql/src/graphql_intf.ml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,14 @@ module type Schema = sig
resolve:('ctx resolve_info -> 'src -> 'b) ->
('ctx, 'src) field

val io_field_with_set_context : ?doc:string ->
?deprecated:deprecated ->
string ->
typ:('ctx, 'a) typ ->
args:(('a, string) result Io.t, 'b) Arg.arg_list ->
resolve:(('ctx -> unit) -> 'ctx resolve_info -> 'src -> 'b) ->
('ctx, 'src) field

val subscription_field : ?doc:string ->
?deprecated:deprecated ->
string ->
Expand Down
Loading