Added vendor table filtering.

This commit is contained in:
Patrick Fic
2021-02-01 16:08:16 -08:00
parent 79e4f5b606
commit 364d59ee9c
4 changed files with 43 additions and 14 deletions

View File

@@ -46,7 +46,6 @@ export const QUERY_TIME_TICKETS_IN_RANGE = gql`
id
employee_number
first_name
cost_center
last_name
}
}

View File

@@ -39,9 +39,9 @@ export const QUERY_ALL_VENDORS = gql`
vendors(order_by: { name: asc }) {
name
id
street1
cost_center
city
phone
}
}
`;