@@ -1954,7 +1954,7 @@ export const aUser = (overrides?: Partial<User>, relationshipsToOmit: Set<string
1954
1954
status: overrides && overrides.hasOwnProperty('status') ? overrides.status! : Status.Online,
1955
1955
customStatus: overrides && overrides.hasOwnProperty('customStatus') ? overrides.customStatus! : AbcStatus.HasXyzStatus,
1956
1956
scalarValue: overrides && overrides.hasOwnProperty('scalarValue') ? overrides.scalarValue! : 'neque',
1957
- camelCaseThing: overrides && overrides.hasOwnProperty('camelCaseThing') ? overrides.camelCaseThing! : relationshipsToOmit.has('camelCaseThing ') ? {} as camelCaseThing : aCamelCaseThing({}, relationshipsToOmit),
1957
+ camelCaseThing: overrides && overrides.hasOwnProperty('camelCaseThing') ? overrides.camelCaseThing! : relationshipsToOmit.has('CamelCaseThing ') ? {} as CamelCaseThing : aCamelCaseThing({}, relationshipsToOmit),
1958
1958
unionThing: overrides && overrides.hasOwnProperty('unionThing') ? overrides.unionThing! : relationshipsToOmit.has('Avatar') ? {} as Avatar : anAvatar({}, relationshipsToOmit),
1959
1959
};
1960
1960
};
@@ -2008,7 +2008,7 @@ export const aQuery = (overrides?: Partial<Query>, relationshipsToOmit: Set<stri
2008
2008
relationshipsToOmit.add('Query');
2009
2009
return {
2010
2010
user: overrides && overrides.hasOwnProperty('user') ? overrides.user! : relationshipsToOmit.has('User') ? {} as User : aUser({}, relationshipsToOmit),
2011
- prefixed_query: overrides && overrides.hasOwnProperty('prefixed_query') ? overrides.prefixed_query! : relationshipsToOmit.has('Prefixed_Response ') ? {} as Prefixed_Response : aPrefixedResponse({}, relationshipsToOmit),
2011
+ prefixed_query: overrides && overrides.hasOwnProperty('prefixed_query') ? overrides.prefixed_query! : relationshipsToOmit.has('PrefixedResponse ') ? {} as PrefixedResponse : aPrefixedResponse({}, relationshipsToOmit),
2012
2012
};
2013
2013
};
2014
2014
"
0 commit comments