@nuffieldtechnologies/rugged-schema-types 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/distribution/index.js +16 -12
- package/package.json +1 -1
package/distribution/index.js
CHANGED
|
@@ -110,20 +110,24 @@ const _User = `
|
|
|
110
110
|
`;
|
|
111
111
|
const _AllUserFields = `{id, organisation, name, email, roles, permissions}`;
|
|
112
112
|
const _Form = `
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
113
|
+
type Form {
|
|
114
|
+
id: ID!
|
|
115
|
+
name: String
|
|
116
|
+
key: String
|
|
117
|
+
updated: String
|
|
118
|
+
status: TEMPLATESTATUS
|
|
119
|
+
data: String
|
|
120
|
+
}
|
|
119
121
|
`;
|
|
120
122
|
const _FormInput = `
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
123
|
+
type FormInput {
|
|
124
|
+
id: ID!
|
|
125
|
+
name: String
|
|
126
|
+
key: String
|
|
127
|
+
updated: String
|
|
128
|
+
status: TEMPLATESTATUS
|
|
129
|
+
data: String
|
|
130
|
+
}
|
|
127
131
|
`;
|
|
128
132
|
const _AllFormFields = `{id, name, key, updated, status, data}`;
|
|
129
133
|
const Task = _TimeStamps + _TemplateInfo + _Task;
|