Query
query PersonalDataAggregation($userId: String!) {
# Health Data (Epic MyChart)
health {
patient(id: $userId) {
demographics {
name
dateOfBirth
address
}
vitals {
bloodPressure
heartRate
weight
}
}
}
# Professional Data (LinkedIn)
professional {
profile(id: $userId) {
workHistory {
company
position
startDate
endDate
}
skills
connections
}
}
# Financial Data (Secure aggregation)
financial {
accounts(id: $userId) {
spending {
category
amount
date
}
creditScore
assets
}
}
}