OBJECT
EventCustomRule
link GraphQL Schema definition
1 type EventCustomRule { 2 3 ID! : 4 5 # The name of the custom rule 6 String! : 7 8 # The status of the custom rule 9 EventCustomRuleStatus! : 10 11 # The event type 12 String! : 13 14 # The event name 15 String! : 16 17 # The description of the custom rule 18 String : 19 20 # The owner org of the custom rule 21 ID! : 22 23 # The event actions as a mutated copy of EventActionTemplate 24 JSONData : 25 26 # The params to be used in the actions 27 JSONData : 28 29 }
link Required by
- EventCustomRuleList
- MutationMutations are used to modify data. Each mutation takes an input that contains the data necessary to create or update the data in question.
- QueryQueries are used to retrieve data. If you're new to our API, try the `me` query to explore the information you have access to. Hit `ctrl-space` at any time to activate field completion hints, and mouse over a field or parameter to see its documentation.