./ct_report/coverage/mongoose_graphql_user_mutation.COVER.html

1 -module(mongoose_graphql_user_mutation).
2 -behaviour(mongoose_graphql).
3
4 -export([execute/4]).
5
6 -ignore_xref([execute/4]).
7
8 execute(_Ctx, _Obj, <<"account">>, _Args) ->
9 3 {ok, account};
10 execute(_Ctx, _Obj, <<"muc">>, _Args) ->
11 14 {ok, muc};
12 execute(_Ctx, _Obj, <<"muc_light">>, _Args) ->
13 27 {ok, muc_light};
14 execute(_Ctx, _Obj, <<"stanza">>, _Args) ->
15 8 {ok, stanza};
16 execute(_Ctx, _Obj, <<"roster">>, _Args) ->
17 18 {ok, roster}.
Line Hits Source