(ctx context.Context, field graphql.CollectedField)
| 3356 | } |
| 3357 | |
| 3358 | func (ec *executionContext) fieldContext_Query_pipelines(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { |
| 3359 | fc = &graphql.FieldContext{ |
| 3360 | Object: "Query", |
| 3361 | Field: field, |
| 3362 | IsMethod: true, |
| 3363 | IsResolver: true, |
| 3364 | Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) { |
| 3365 | switch field.Name { |
| 3366 | case "id": |
| 3367 | return ec.fieldContext_Pipeline_id(ctx, field) |
| 3368 | case "name": |
| 3369 | return ec.fieldContext_Pipeline_name(ctx, field) |
| 3370 | case "type": |
| 3371 | return ec.fieldContext_Pipeline_type(ctx, field) |
| 3372 | case "enabled": |
| 3373 | return ec.fieldContext_Pipeline_enabled(ctx, field) |
| 3374 | case "status": |
| 3375 | return ec.fieldContext_Pipeline_status(ctx, field) |
| 3376 | case "repositoryEmbeddings": |
| 3377 | return ec.fieldContext_Pipeline_repositoryEmbeddings(ctx, field) |
| 3378 | } |
| 3379 | return nil, fmt.Errorf("no field named %q was found under type Pipeline", field.Name) |
| 3380 | }, |
| 3381 | } |
| 3382 | return fc, nil |
| 3383 | } |
| 3384 | |
| 3385 | func (ec *executionContext) _Query_getPipeline(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) { |
| 3386 | fc, err := ec.fieldContext_Query_getPipeline(ctx, field) |
no test coverage detected