@@ -55,28 +55,28 @@ The `disableOperations` method accepts an array of operation types that you want
55
55
56
56
### General Operation Categories
57
57
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)
61
61
62
62
### Specific Operations
63
63
You can also disable more granular operations:
64
64
Query Operations
65
65
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
68
68
69
69
### Mutation Operations
70
70
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
74
74
75
75
### Subscription Operations
76
76
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
80
80
81
81
You can specify one or more operation types in the array to disable them:
82
82
0 commit comments