You connect the GPS to serial1 and then read data from it. You can then write it on serial eg
if (Serial.available()>0){
Serial.write(Serial1.read());
}
And you will see what the GPS is sending.
The other serials can be used (or not) as you wish
Mark