Added base owners list page.

This commit is contained in:
Patrick Fic
2020-02-10 09:05:33 -08:00
parent a3c66866d3
commit cef294b65f
8 changed files with 186 additions and 7 deletions

View File

@@ -65,3 +65,28 @@ export const UPDATE_OWNER = gql`
}
}
`;
export const QUERY_ALL_OWNERS = gql`
query QUERY_ALL_OWNERS {
owners {
id
allow_text_message
created_at
ownr_addr1
ownr_addr2
ownr_co_nm
ownr_city
ownr_ctry
ownr_ea
ownr_fn
ownr_ph1
ownr_ln
ownr_ph2
ownr_st
ownr_title
ownr_zip
preferred_contact
updated_at
}
}
`;