closes: #4428 Testing for fetchMoreRecords is pending, along with component tests --------- Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
export const createApolloStoreFieldName = ({
|
|
fieldName,
|
|
fieldVariables,
|
|
}: {
|
|
fieldName: string;
|
|
fieldVariables: Record<string, any>;
|
|
}) => {
|
|
return `${fieldName}(${JSON.stringify(fieldVariables)})`;
|
|
};
|