how to use the query result

Hi guys,
I’m using a database to store images and associated description. I was able to create a query to find the item in the database when it is pointed with the mouse. The query result is something like that:
{“_id”:“1ec”,“title”:“Epge”,“_owner”:“beb7874”,“_createdDate”:“2018-03-11T10:34:58.775Z”,“_updatedDate”:“2018-03-19T21:55:44.854Z”,“description”:“Je suis un”,“imageP”:“image://v1/bc34e0_464277cd4ad25d0c~mv2.png/1172_1175/Epge”,“domaine”:“Pimoine”,“project”:“Ksque”,“pictureNumber”:“1”,“imageG”:“image://v1/bc34e0_21f037a3691f108ca0b~mv2_d_7600_4500_s_4_2.jpeg/7600_4500/SMatière2.jpeg”}

How should I use this object to extract this specific information: image://v1/bc34e0_21f037a3691f108ca0b~mv2_d_7600_4500_s_4_2.jpeg/7600_4500/SMatière2.jpeg

Thanks for your help

Hi,
If i understand you correctly you can do it this way:

const item = {"_id":"1ec","title":"Epge","_owner":"beb7874","_createdDate":"2018-03-11T10:34:58.775Z","_updatedDate":"2018-03-19T21:55:44.854Z","description":"Je suis un","imageP":"image://v1/bc34e0_464277cd4ad25d0c~mv2.png/1172_1175/Epge","domaine":"Pimoine","project":"Ksque","pictureNumber":"1","imageG":"image://v1/bc34e0_21f037a3691f108ca0b~mv2_d_7600_4500_s_4_2.jpeg/7600_4500/SMatière2.jpeg"}; // your object from the post above
const yourImage = item.imageG;

Let us know if this what you meant.
Roi