PostgREST return 不是 JSON 对象的空值

PostgREST return not null values of JSON object

我有一个包含三列的 postgrSQL table,其中一列是 json 字段:

  id [num]  ||  school [char]   ||  info [json]
============================================================================
   1        ||   1st            || [{"fistname": "Bill", "Lastname": "Maison"}]
   2        ||   2nd            || [{"fistname": "John", "Lastname": "Handson"}]
   3        ||   3rd            || []
 

我想用 postgREST 过滤空信息字段。

我现在的url:https://127.0.0.1/table?&info->0->firstname=is.null

这实际上是 returns 所有为空的值,但我如何以其他方式做到这一点?排除所有空值?

找到了。 对于将来会查找此内容的任何人:https://127.0.0.1/table?&info->0->firstname=not.is.null