4087 refactor object metadata item hooks and utils (#4861)

- Extracted each exported element from useObjectMetadataItem into its
own hook.
This commit is contained in:
Lucas Bordeau
2024-04-09 09:19:52 +02:00
committed by GitHub
parent 651af1c0e1
commit b1242bb850
89 changed files with 699 additions and 622 deletions

View File

@ -0,0 +1,7 @@
import gql from 'graphql-tag';
export const EMPTY_MUTATION = gql`
mutation EmptyMutation {
empty
}
`;

View File

@ -0,0 +1,7 @@
import gql from 'graphql-tag';
export const EMPTY_QUERY = gql`
query EmptyQuery {
empty
}
`;