20
loading...
This website collects cookies to deliver better user experience
“Success is fun … yes. But success is not the point. Wanting to be successful is the point. Not giving up is the point. Not letting up is the point. Never being completely satisfied with what you have done is the point.“ - adapted from Pat Summitt’s definition of “winning”
type Customer {
id: ID!
name: String!
loyaltyPrograms: [LoyaltyProgram]
orders: [Order]
products: [Product]
supportTickets: [SupportTicket]
reviews: [Review]
siteDataResults: [SiteData]
socialMediaPosts: [SocialMedia]
}
type LoyaltyProgram {
id: ID!
joined: DateTime!
level: Int!
}
type Product {
id: ID!
name: String!
category: String!
price: Float!
}
type Order {
id: ID!
products: [Product!]
amount: Float!
}
type SupportTicket {
id: ID!
category: String!
status: String!
order: Order
product: Product
loyaltyProgram: LoyaltyProgram
summary: String!
created: DateTime!
lastUpdated: DateTime
}
type Review {
id: ID!
product: Product!
rating: Int!
summary: String
}
type SiteData {
id: ID!
category: String!
summary: String!
date: DateTime!
}
type SocialMedia {
id: ID!
source: String!
tags: [String]
summary: String!
posted: DateTime!
}
query MyQuery {
queryCustomer(filter: {id: "0x28caba09"}) {
id
loyaltyPrograms {
joined
level
}
orders {
amount
products {
name
category
reviews {
rating
summary
}
}
}
siteDataResults {
date
category
summary
}
supportTickets {
category
summary
status
}
socialMediaPosts {
posted
source
summary
tags
}
name
}
}
{
"data": {
"queryCustomer": [
{
"id": "0x28caba09",
"loyaltyPrograms": [
{
"joined": "2020-01-01T00:00:00Z",
"level": 3
}
],
"orders": [
{
"amount": 20.25,
"products": [
{
"name": "Chelated Magnesium",
"category": "health",
"reviews": []
}
]
},
{
"amount": 21.5,
"products": [
{
"name": "A&I Formula",
"category": "health",
"reviews": []
},
{
"name": "Micellized Vitamin D3",
"category": "vitamins",
"reviews": [
{
"rating": 5,
"summary": "Great product, excellent taste!"
}
]
}
]
}
],
"siteDataResults": [
{
"date": "2021-05-26T00:00:00Z",
"category": "faq",
"summary": "loyalty program not working"
},
{
"date": "2021-05-25T00:00:00Z",
"category": "loyalty",
"summary": "join loyalty program"
},
{
"date": "2021-05-24T00:00:00Z",
"category": "potential-sale",
"summary": "added A&I Formula to cart"
},
{
"date": "2021-05-24T00:00:00Z",
"category": "potential-sale",
"summary": "added Chelated Magnesium to cart"
},
{
"date": "2021-05-24T00:00:00Z",
"category": "potential-sale",
"summary": "added Micellized Vitamin D3 to cart"
},
{
"date": "2021-05-24T00:00:00Z",
"category": "potential-sale",
"summary": "added Buffered Vitamin C to cart"
},
{
"date": "2021-05-25T00:00:00Z",
"category": "lost-sale",
"summary": "removed Buffered Vitamin C to cart"
}
],
"supportTickets": [
{
"category": "loyalty",
"summary": "Not getting free shipping option",
"status": "closed"
}
],
"socialMediaPosts": [
{
"posted": "2021-06-02T00:00:00Z",
"source": "twitter",
"summary": "Loving the way I feel taking Micellized Vitamin D3 everyday!",
"tags": [
"#companyNameGoesHere",
"#vitaminD3",
"#health"
]
},
{
"posted": "2021-06-01T00:00:00Z",
"source": "twitter",
"summary": "Who has the best price on Buffered Vitamin C?",
"tags": [
"#vitaminC",
"#health",
"#buffered"
]
}
],
"name": "John Doe"
}
]
}
}
“Focus your time on delivering features/functionality which extends the value of your intellectual property. Leverage frameworks, products, and services for everything else.”
20