mirror of
https://github.com/colanode/colanode.git
synced 2025-12-16 11:47:47 +01:00
21 lines
439 B
TypeScript
21 lines
439 B
TypeScript
export type SelectOptionDeleteMutationInput = {
|
|
type: 'select.option.delete';
|
|
userId: string;
|
|
databaseId: string;
|
|
fieldId: string;
|
|
optionId: string;
|
|
};
|
|
|
|
export type SelectOptionDeleteMutationOutput = {
|
|
id: string;
|
|
};
|
|
|
|
declare module '@colanode/client/mutations' {
|
|
interface MutationMap {
|
|
'select.option.delete': {
|
|
input: SelectOptionDeleteMutationInput;
|
|
output: SelectOptionDeleteMutationOutput;
|
|
};
|
|
}
|
|
}
|