OrganizationResolver will namespace all runtime configuration to the provided organization ID. Configuration values stored with a given organization ID require that the organization ID be provided to retrieve the value. No values set here will ever be returned by the call to 'Resolver()'.
(db Store, orgID uuid.UUID)
| 24 | // that the organization ID be provided to retrieve the value. |
| 25 | // No values set here will ever be returned by the call to 'Resolver()'. |
| 26 | func (*Manager) OrganizationResolver(db Store, orgID uuid.UUID) Resolver { |
| 27 | return OrganizationResolver(orgID, NewStoreResolver(db)) |
| 28 | } |