Skip to content

Commit 1e896d9

Browse files
committed
Add boolean to author schema
1 parent c8e6a6f commit 1e896d9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/sql-source-test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ QUnit.module('SQLSource', function (hooks) {
1414
attributes: {
1515
firstName: 'Paul',
1616
lastName: 'Chavard',
17+
admin: true,
1718
},
1819
};
1920
const article1 = {
@@ -43,6 +44,7 @@ QUnit.module('SQLSource', function (hooks) {
4344
attributes: {
4445
firstName: { type: 'string' },
4546
lastName: { type: 'string' },
47+
admin: { type: 'boolean' },
4648
},
4749
relationships: {
4850
articles: {

0 commit comments

Comments
 (0)