github refinedev/refine @refinedev/inferencer@4.3.0

Minor Changes

Patch Changes

  • #4601 090653717d6 Thanks @aliemir! - Updated inferencer functions to check for relational fields with representable values. If the inferencer type is show or list, the inferencer will use the available properties to show the field instead of trying to fetch the relational data.

    // posts/1
    {
        id: 1,
        name: "Post 1",
        tags: [
            {
                id: 5,
                name: "Tag 5"
            },
            {
                id: 6,
                name: "Tag 6"
            }
        ],
        content: "...",
    }

    Above structure will show the tags field in list and show inferencers using the name property instead of trying to fetch the relational data. But edit and create inferencers will still work with the relational data.

  • Updated dependencies [c3c0deed564, 8c2b3be35b0, 5bb6f47a4d4]:

    • @refinedev/core@4.26.0

Don't miss a new refine release

NewReleases is sending notifications on new releases.