Full query of non-deleted invites with all edges loaded
()
| 113 | |
| 114 | // Full query of non-deleted invites with all edges loaded |
| 115 | func (r *OrgInvitation) query() *ent.OrgInvitationQuery { |
| 116 | return r.data.DB.OrgInvitation.Query().WithOrganization().WithSender().Where(orginvitation.DeletedAtIsNil()) |
| 117 | } |
| 118 | |
| 119 | func (r *OrgInvitation) FindByID(ctx context.Context, id uuid.UUID) (*biz.OrgInvitation, error) { |
| 120 | ctx, span := otelx.Start(ctx, orgInvitationRepoTracer, "OrgInvitation.FindByID") |
no test coverage detected