Skip to content

Commit 8f5bbc5

Browse files
authored
fixed styling
1 parent 4f1049c commit 8f5bbc5

File tree

1 file changed

+11
-11
lines changed
  • src/pages/[platform]/build-a-backend/data/data-modeling/disable-operations

1 file changed

+11
-11
lines changed

src/pages/[platform]/build-a-backend/data/data-modeling/disable-operations/index.mdx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -55,28 +55,28 @@ The `disableOperations` method accepts an array of operation types that you want
5555

5656
### General Operation Categories
5757

58-
- 'mutations': Disables all mutation operations (create, update, delete)
59-
- 'subscriptions': Disables all real-time subscription operations (onCreate, onUpdate, onDelete)
60-
- 'queries': Disables all query operations (get, list)
58+
- `mutations`: Disables all mutation operations (create, update, delete)
59+
- `subscriptions`: Disables all real-time subscription operations (onCreate, onUpdate, onDelete)
60+
- `queries`: Disables all query operations (get, list)
6161

6262
### Specific Operations
6363
You can also disable more granular operations:
6464
Query Operations
6565

66-
- 'get': Disables the ability to fetch a single item by ID
67-
- 'list': Disables the ability to fetch multiple items
66+
- `get`: Disables the ability to fetch a single item by ID
67+
- `list`: Disables the ability to fetch multiple items
6868

6969
### Mutation Operations
7070

71-
- 'create': Disables the ability to create new items
72-
- 'update': Disables the ability to update existing items
73-
- 'delete': Disables the ability to delete items
71+
- `create`: Disables the ability to create new items
72+
- `update`: Disables the ability to update existing items
73+
- `delete`: Disables the ability to delete items
7474

7575
### Subscription Operations
7676

77-
- 'onCreate': Disables real-time notifications when items are created
78-
- 'onUpdate': Disables real-time notifications when items are updated
79-
- 'onDelete': Disables real-time notifications when items are deleted
77+
- `onCreate`: Disables real-time notifications when items are created
78+
- `onUpdate`: Disables real-time notifications when items are updated
79+
- `onDelete`: Disables real-time notifications when items are deleted
8080

8181
You can specify one or more operation types in the array to disable them:
8282

0 commit comments

Comments
 (0)