Skip to content

Commit 6b1ccde

Browse files
authored
updated headings
1 parent 96ca47f commit 6b1ccde

File tree

1 file changed

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

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,30 +49,30 @@ export const schema = a.schema({
4949
});
5050
```
5151

52-
##Available Operation Types
52+
## Available Operation Types
5353

5454
The disableOperations method accepts an array of operation types that you want to disable:
5555

56-
###General Operation Categories
56+
### General Operation Categories
5757

5858
"mutations": Disables all mutation operations (create, update, delete)
5959
"subscriptions": Disables all real-time subscription operations (onCreate, onUpdate, onDelete)
6060
"queries": Disables all query operations (get, list)
6161

62-
###Specific Operations
62+
### Specific Operations
6363
You can also disable more granular operations:
6464
Query Operations
6565

6666
"get": Disables the ability to fetch a single item by ID
6767
"list": Disables the ability to fetch multiple items
6868

69-
###Mutation Operations
69+
### Mutation Operations
7070

7171
"create": Disables the ability to create new items
7272
"update": Disables the ability to update existing items
7373
"delete": Disables the ability to delete items
7474

75-
###Subscription Operations
75+
### Subscription Operations
7676

7777
"onCreate": Disables real-time notifications when items are created
7878
"onUpdate": Disables real-time notifications when items are updated

0 commit comments

Comments
 (0)