We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3401044 commit ec79b38Copy full SHA for ec79b38
src/api/provider/GraphConverter.ts
@@ -80,7 +80,7 @@ export class GraphConverter {
80
source.thumb = source.thumb ?? { id: null, url: thumbUrl };
81
82
source.cluster = source.sfm_cluster ?? { id: null, url: null };
83
- source.creator = { id: null, username: null };
+ source.creator = source.creator ?? { id: null, username: null };
84
source.owner = source.organization ?? { id: null };
85
source.mesh = source.mesh ?? { id: null, url: null };
86
src/api/provider/GraphQueryCreator.ts
@@ -26,6 +26,7 @@ export class GraphQueryCreator {
26
'computed_altitude',
27
'computed_compass_angle',
28
'computed_rotation',
29
+ 'creator',
30
'exif_orientation',
31
'height',
32
'merge_cc',
0 commit comments