Skip to content

Commit

Permalink
test: add example schemas for test
Browse files Browse the repository at this point in the history
Refs: #6

PR-URL: #14
  • Loading branch information
tshemsedinov committed Sep 11, 2020
1 parent cb1322c commit 7bf7923
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/schema/Country.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
({
planet: 'Planet',
name: { type: 'string', unique: true },
});
4 changes: 4 additions & 0 deletions test/schema/District.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
({
city: 'City',
name: { type: 'string', unique: true },
});
3 changes: 3 additions & 0 deletions test/schema/Planet.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
({
name: { type: 'string', unique: true },
});

0 comments on commit 7bf7923

Please sign in to comment.