Solved
Use Json instead of custom objects
I want to use json data instead of custom objects to store event visit information. The idea is the following :
[
{
"event_name":"EventA",
"event_year":"2020",
"event_received_score":3,
"event_received_demo":true
},
{
"event_name":"EventB",
"event_year":"2020",
"event_received_score":4,
"event_received_demo":false
}
]
How will Marketo react if I want to query for event_name = "EventA" and "event_received_score" > 3 within that same event. Not creating a true for "event_received_score" based on the value in the second event object ( "EventB" )
Can this be solved?