How to exclude particular attribute in response - GSQL

I want to exclude particular attribute from Customer ,Ex: phoneNumber, How do I handle it in GSQL.

start= {Customer};
resources = SELECT v FROM start:v;
PRINT resources;

Something like below is supported ?
PRINT resources [-resources.phoneNumber]