import { gql } from '@apollo/client';

export const accountKeyFragment = gql`
    fragment AccountKeyFragment on Vendor {
        __typename
        vendorId
        uuid
    }
`;
