mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 20:16:26 +08:00
feat(core): add split view to experimental features settings (#6093)
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
query getUserFeatures {
|
||||
currentUser {
|
||||
features
|
||||
}
|
||||
}
|
||||
@@ -343,6 +343,19 @@ query getPublicWorkspace($id: String!) {
|
||||
}`,
|
||||
};
|
||||
|
||||
export const getUserFeaturesQuery = {
|
||||
id: 'getUserFeaturesQuery' as const,
|
||||
operationName: 'getUserFeatures',
|
||||
definitionName: 'currentUser',
|
||||
containsFile: false,
|
||||
query: `
|
||||
query getUserFeatures {
|
||||
currentUser {
|
||||
features
|
||||
}
|
||||
}`,
|
||||
};
|
||||
|
||||
export const getUserQuery = {
|
||||
id: 'getUserQuery' as const,
|
||||
operationName: 'getUser',
|
||||
|
||||
Reference in New Issue
Block a user