Is GraphQL out of the box with Adobe Campaign Standard?
Hi all,
Is it possible to perform GraphQL API calls from Adobe Campaign Standard database(client Data)?
If not, maybe someone can provide suggestions for my question below.
Let's say I have 3 tables: Profile, Order, Feedback
The profile can have many orders.
Order can have one feedback.
So if I retrieve order data via a rest API call. Is there a way I can get the entire feedback data(not only the PKey of feedback) along with the entire order data?
Rest API call:
get order by PKey = blabla1
Expected result:
Order {
PKey: "blabla1",
item: "blablaItem"
Feedback: {
PKey: "blablafeedback",
message: "blabla bla bal"
}
}
Thanks in advance
Nawang