fix: Firebase analytics issue and handled data connect

This commit is contained in:
dhinesh-m24
2026-02-02 16:44:16 +05:30
parent cb25b33d04
commit fa208f2838
196 changed files with 19919 additions and 31464 deletions

View File

@@ -2,12 +2,8 @@ query listTaxForms @auth(level: USER) {
taxForms {
id
formType
title
subtitle
description
status
staffId
formData
createdAt
updatedAt
createdBy
@@ -18,12 +14,8 @@ query getTaxFormById($id: UUID!) @auth(level: USER) {
taxForm(id: $id) {
id
formType
title
subtitle
description
status
staffId
formData
createdAt
updatedAt
createdBy
@@ -34,12 +26,8 @@ query getTaxFormsBystaffId($staffId: UUID!) @auth(level: USER) {
taxForms(where: { staffId: { eq: $staffId } }) {
id
formType
title
subtitle
description
status
staffId
formData
createdAt
updatedAt
createdBy
@@ -60,7 +48,6 @@ query filterTaxForms(
) {
id
formType
title
status
staffId
}