(ctx context.Context, rawArgs map[string]interface{})
| 1171 | } |
| 1172 | |
| 1173 | func (ec *executionContext) field_Query_getStorage_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) { |
| 1174 | var err error |
| 1175 | args := map[string]interface{}{} |
| 1176 | var arg0 string |
| 1177 | if tmp, ok := rawArgs["id"]; ok { |
| 1178 | ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("id")) |
| 1179 | arg0, err = ec.unmarshalNID2string(ctx, tmp) |
| 1180 | if err != nil { |
| 1181 | return nil, err |
| 1182 | } |
| 1183 | } |
| 1184 | args["id"] = arg0 |
| 1185 | return args, nil |
| 1186 | } |
| 1187 | |
| 1188 | func (ec *executionContext) field_Query_semanticSearch_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) { |
| 1189 | var err error |
no test coverage detected