1
0
Fork 0
mirror of synced 2024-06-30 12:00:31 +12:00

Don't invalidate users table due to autocolumn fields in schema when hot reloading data in the client library

This commit is contained in:
Andrew Kingston 2021-10-27 08:37:51 +01:00
parent 870219722a
commit 5d5a35fd32

View file

@ -1,5 +1,6 @@
import { writable, get } from "svelte/store"
import { fetchTableDefinition } from "../api"
import { TableNames } from "../constants"
export const createDataSourceStore = () => {
const store = writable([])
@ -72,13 +73,17 @@ export const createDataSourceStore = () => {
const schema = definition?.schema
if (schema) {
Object.values(schema).forEach(fieldSchema => {
if (fieldSchema.type === "link" && fieldSchema.tableId) {
if (
fieldSchema.type === "link" &&
fieldSchema.tableId &&
!fieldSchema.autocolumn
) {
invalidations.push(fieldSchema.tableId)
}
})
}
// Remove and dupes
// Remove any dupes
invalidations = [...new Set(invalidations)]
// Invalidate all sources