MCPcopy Create free account
hub / github.com/chainloop-dev/chainloop / ID

Method ID

app/controlplane/pkg/data/ent/mutation.go:9147–9152  ·  view source on GitHub ↗

ID returns the ID value in the mutation. Note that the ID is only available if it was provided to the builder or after it was returned from the database.

()

Source from the content-addressed store, hash-verified

9145// ID returns the ID value in the mutation. Note that the ID is only available
9146// if it was provided to the builder or after it was returned from the database.
9147func (m *OrganizationMutation) ID() (id uuid.UUID, exists bool) {
9148 if m.id == nil {
9149 return
9150 }
9151 return *m.id, true
9152}
9153
9154// IDs queries the database and returns the entity ids that match the mutation's predicate.
9155// That means, if the mutation is applied within a transaction with an isolation level such

Callers 1

IDsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected