New data

  1.  
    1. Hi,

       

      How can i get the data that were added from specific date (mqlread)

       Tx.

      1. You can query against the timestamp, something along the lines of:

        [
          {
            "name" : null,
            "timestamp" : null,
            "timestamp>" : "2008-08",
            "type" : "/film/film"
          }
        ]

         

        This returns films that were added this month.

      2. To be precise, Bryan’s query will find things that were created this month, which are also of type /film/film. To find new assertions, you have to get a little more complicated.

        [
          {
            "id" : null,
            "type" : {
              "id" : "/film/film",
              "link" : {
                "timestamp>" : "2008-08"
              }
            }
          }
        ]

        will find things who have had their film type asserted this month.

        [
          {
            "id" : null,
            "type" : [
              {
                "id" : null,
                "link" : {
                  "timestamp>" : "2008-08"
                }
              }
            ]
          }
        ]

        will find things that have had new types added this month. In general, for any property assertion, you can ask about the timestamp on the link.

      3. Hi,

        Thanks a lot for your help.

    Discussion is posted in:

    Think this discussion also relates to something else? Cross-post it by adding a new discussion area:

Search Discussions