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

export const abacusAccountKeyFragment = gql`
    fragment AbacusAccountKeyFragment on AbacusAccount {
        __typename
        accountId
    }
`;
