-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
delete old sample and update schemas
- Loading branch information
Showing
11 changed files
with
122 additions
and
8,817 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,59 @@ | ||
Category.name: string . | ||
City.name: string @index(hash) @upsert . | ||
Project.status: default . | ||
Project.id: default . | ||
typecity: default . | ||
typestate: default . | ||
School.projects: [uid] . | ||
School.geoloc: geo . | ||
City.state: uid . | ||
Donation.amount: float . | ||
Donation.donor: uid . | ||
Project.donations: [uid] . | ||
Donor.id: default . | ||
Project.category: uid . | ||
School.id: default . | ||
typedonor: default . | ||
Donor.geostate: uid . | ||
Donation.project: uid . | ||
Donor.amount: float . | ||
typedonation: default . | ||
Donation.date: uid . | ||
typeproject: default . | ||
Project.title: string @index(term) . | ||
City.state: uid . | ||
Donor.donations: [uid] . | ||
Donor.name: string @index(term) . | ||
Project.category: uid . | ||
Project.donations: [uid] . | ||
Project.grade: string @index(hash) . | ||
Project.school: uid . | ||
Project.title: string @index(term) . | ||
School.city: uid . | ||
School.geoloc: geo . | ||
School.name: string @index(term) . | ||
School.projects: [uid] . | ||
School.type: string @index(hash) . | ||
typeschool: default . | ||
Donation.project: uid . | ||
State.name: string @index(hash) @upsert . | ||
School.name: string @index(term) . | ||
typecategory: default . | ||
Donor.name: string @index(term) . | ||
Project.school: uid . | ||
Donor.donations: [uid] . | ||
Donation.amount: float . | ||
type School { | ||
School.city | ||
School.geoloc | ||
typeschool | ||
School.id | ||
School.name | ||
School.type | ||
School.projects | ||
} | ||
type State { | ||
State.name | ||
typestate | ||
} | ||
|
||
type Category { | ||
Category.name | ||
typecategory | ||
Category.name | ||
} | ||
type City { | ||
City.name | ||
City.state | ||
typecity | ||
City.name | ||
City.state | ||
} | ||
|
||
type Donation { | ||
Donation.amount | ||
typedonation | ||
Donation.date | ||
Donation.donor | ||
Donation.project | ||
Donation.amount | ||
Donation.donor | ||
Donation.project | ||
} | ||
type Donor { | ||
Donor.id | ||
Donor.name | ||
Donor.donations | ||
typedonor | ||
Donor.geostate | ||
Donor.amount | ||
Donor.name | ||
Donor.donations | ||
} | ||
|
||
|
||
type Project { | ||
Project.grade | ||
typeproject | ||
Project.id | ||
Project.status | ||
Project.category | ||
Project.school | ||
Project.donations | ||
Project.title | ||
} | ||
Project.title | ||
Project.grade | ||
Project.category | ||
Project.school | ||
Project.donations | ||
} | ||
type School { | ||
School.name | ||
School.type | ||
School.projects | ||
School.city | ||
School.geoloc | ||
} | ||
|
||
type State { | ||
State.name | ||
} |
Oops, something went wrong.