Let's say I have a Quote type. I'd like to be able to retrieve a random quote. I can get all the quotes using the following query:
query {
allQuotes {
id
text
}
}
How do I get a random record from the Quotes
Let's say I have a Quote type. I'd like to be able to retrieve a random quote. I can get all the quotes using the following query:
query {
allQuotes {
id
text
}
}
How do I get a random record from the Quotes