Files
twenty/packages/twenty-front/src/utils/createApolloStoreFieldName.ts
Aditya Pimpalkar 4a67cfa1c3 feat: Revamp navigation bar (#6031)
closes: #4428

Testing for fetchMoreRecords is pending, along with component tests

---------

Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
2024-07-16 14:38:17 +02:00

10 lines
212 B
TypeScript

export const createApolloStoreFieldName = ({
fieldName,
fieldVariables,
}: {
fieldName: string;
fieldVariables: Record<string, any>;
}) => {
return `${fieldName}(${JSON.stringify(fieldVariables)})`;
};