MCPcopy
hub / github.com/kriasoft/graphql-starter-kit / WorkspaceMemberInitializer

Interface WorkspaceMemberInitializer

db/models/WorkspaceMember.ts:19–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17
18/** Represents the initializer for the table public.workspace_member */
19export interface WorkspaceMemberInitializer {
20 workspace_id: WorkspaceId;
21
22 user_id: UserId;
23
24 /** Default value: 'member'::user_role */
25 role?: UserRole;
26}
27
28/** Represents the mutator for the table public.workspace_member */
29export interface WorkspaceMemberMutator {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected