MCPcopy Index your code
hub / github.com/dagger/dagger / Text

Method Text

toolchains/engine-dev/internal/dagger/dagger.gen.go:14136–14146  ·  view source on GitHub ↗

The matched text.

(ctx context.Context)

Source from the content-addressed store, hash-verified

14134
14135// The matched text.
14136func (r *SearchSubmatch) Text(ctx context.Context) (string, error) {
14137 if r.text != nil {
14138 return *r.text, nil
14139 }
14140 q := r.query.Select("text")
14141
14142 var response string
14143
14144 q = q.Bind(&response)
14145 return response, q.Execute(ctx)
14146}
14147
14148// AsNode returns this SearchSubmatch as a Node.
14149// This is a local type conversion — no GraphQL call.

Callers 3

testContainerMethod · 0.45
LoadToDockerMethod · 0.45
ServiceMethod · 0.45

Calls 3

SelectMethod · 0.65
BindMethod · 0.45
ExecuteMethod · 0.45

Tested by

no test coverage detected