You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: apps/condo/domains/meter/gql.js
+3-3
Original file line number
Diff line number
Diff line change
@@ -89,8 +89,8 @@ const MeterReadingsImportTask = generateGqlQueries('MeterReadingsImportTask', ME
89
89
constMETER_READING_EXPORT_TASK_FIELDS=`{ status format exportedRecordsCount totalRecordsCount file { id originalFilename publicUrl mimetype } meta where sortBy locale timeZone user { id } ${COMMON_FIELDS} }`
schemaDoc: `Custom user data that a user with type ${RESIDENT} can assign to a specific meter device to make it easier to understand what kind of device it is`,
schemaDoc: `Custom user setting that a user with type ${RESIDENT} can assign to a specific meter device to make it easier to understand what kind of device it is`,
15
14
fields: {
16
15
17
16
user: {
18
-
schemaDoc: 'User that created their custom meter data',
17
+
schemaDoc: 'User that created their custom meter setting',
19
18
type: 'Relationship',
20
19
ref: 'User',
21
20
isRequired: true,
@@ -24,7 +23,7 @@ const MeterUserData = new GQLListSchema('MeterUserData', {
24
23
},
25
24
26
25
meter: {
27
-
schemaDoc: 'Meter for which the user created custom data',
26
+
schemaDoc: 'Meter for which the user created custom setting',
28
27
type: 'Relationship',
29
28
ref: 'Meter',
30
29
isRequired: true,
@@ -45,20 +44,20 @@ const MeterUserData = new GQLListSchema('MeterUserData', {
0 commit comments