Queries inside packages

Is there a way to run a Query that is in a package that is installed on the DB?

Are we talking Oracle? For Oracle, procedures and funtions can be executed from the right-click menu in the Object Explorer. This feature does not exist for packages. You would need to execute in a anonymous block in the SQL editor.

begin
utility.fill_order_items(100);
end;