open-codetree / graphql /definitions /pageView.definition.ts
matt HOFFNER
init
3c3f089
raw
history blame contribute delete
204 Bytes
import { gql } from "@apollo/client";
export const PageViewQuery = gql(`query pageViews {
pageViews {
data {
id
ip
createdAt
updatedAt
}
message
status
}
}`);